@font-face {
    font-family: 'Abydos';
    src: url('font/AbydosB.ttf');
}

#main {
    font-family: monospace;
    font-size: 3 rem;
    font-weight: bold;
    text-align: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#counter {
    font-family: monospace;
    font-size: 5vw;
    opacity: 0.00;
    transform: translateY(10%);
    transition: transform 300 linear;
}

#counter.counter-show {
    transform: translateY(0);
    opacity: 1.0;
    transition: transform 0.3s ease-out, opacity 0.3s linear;
}

.glyph {
    font-family: 'Abydos';
}


@media only screen and (max-width: 480px) {
    #counter {
        font-size: 2rem;
    }
}

.subtle-hint {
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}
