.text-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.text-container label {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.question {
    display: flex;
    font-size: 4vw;
    font-weight: bold;
    letter-spacing: 0.25em;
    text-align: center;
}
.marker {
    background: #91dbf1;
}
.text {
    width: 100%;
    border: none;
    margin-top: 2rem;
    font-size: 2vw;
    letter-spacing: 0.1em;
    text-align: center;
}
.text:focus, .text:focus-visible {
    border: none;
    outline: none;
}
.message {
    display: block;
    margin-top: 2rem;
    font-size: 1.5rem;
    text-align: center;
}
.button {
    margin-top: 1rem;
    font-size: 1rem;
    cursor: pointer;
}
.hidden {
    display: none;
}
.correct {
    color: black;
}
.incorrect {
    color: red;
}
.timer {
    font-size: 2rem;
    margin-top: 1rem;
}
