.quick-math-game-container {
    position: absolute;
    min-width: 80%;
    min-height: 80%;
    top: 20%;
}

.problem-container {
    font-size: 3.5rem;
    text-align: center;
    margin: 20px 0;
    animation: fadeIn 0.5s;
}

.answer-input {
    /* display: block; */
    font-size: 3.5rem;
    width: calc(55% - 22px);
    height: 70px;
    /* Account for padding and border */
    margin: 10px 0;
    padding: 10px;
    border: 5px solid var(--fun-frenzia-color);
    border-radius: 12px;
    background-color: #00000000;
    color: black;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.answer-input::placeholder {
    color: black;
    font-size: clamp(1rem, 1.4rem, 25px);
    opacity: 50%;
}

.answer-input:focus {
    outline: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}