#content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-title {
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    color: var(--accent);
    letter-spacing: 0.1em;
}

.home-sub {
    margin-top: 0.5rem;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--dim);
}

#loader {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bg);
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.done {
    opacity: 0;
    visibility: hidden;
}

#ascii-frame {
    font-size: clamp(3.5px, 0.6vw, 7px);
    line-height: 1.15;
    white-space: pre;
    color: var(--fg);
    letter-spacing: 0.01em;
    opacity: 0;
    transition: opacity 0.15s ease;
}

#ascii-frame.visible {
    opacity: 1;
}

#status {
    margin-top: 1.5rem;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--dim);
    text-transform: uppercase;
}

#dots {
    display: inline-block;
    width: 24px;
    text-align: left;
}

