/*
    Landon Hansen
    2/22/2024
    Countdown Timer Assignment
*/

* {
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    font-family: "Anta", sans-serif;
}

html {
    font-size: 2em;
}

input:not(input[type="submit"]) {
    font-size: 0.7em;
    width: 1rem;
    text-align: center;

    background: none;

    border: none;

    border-bottom: 1px solid rgb(150, 150, 150);
    border-radius: 2px;
}

input:focus {
    outline: none;
}

input:disabled {
    cursor: not-allowed;
}

input[type="submit"] {
    background: none;
    border: 2px solid lightgray;
    cursor: pointer;
}

.timerDone > input:not(input[type="submit"]) {
    animation: blink 1s infinite;
    animation-timing-function: steps(1, end);
}

@keyframes blink {
    0% {
        color: rgba(0, 0, 0, 0);
    }
    50% {
        color: red;
    }
    100% {
        /* color: black; */
        color: rgba(0, 0, 0, 0);
    }
}