.app {
    min-height: initial !important;
    flex-grow: 1;
    position: relative;
}

body {
    height: 100dvh;
    display: flex;
    flex-direction: column;
}

.question {
    display: flex;
    color: white;
    justify-content: center;
    padding: 1rem 0;
}

.gererBoutons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: var(--tapis-width);
    gap: 0.8rem;
}

.afficherReponse,
.suivant {
    flex: 1;
    min-width: 70px;
    min-height: 30px;
    transition: background 0.3s ease;
}
.boutonCache {
    display: none;
}

.stationChoisie {
    display: flex;
    color: white;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-family: "Lora";
}

.verification {
    display: flex;
    color: white;
    justify-content: center;
    font-size: 1.7rem;
    height: 1rem;
}

#exercice {
    align-items: center;
    box-sizing: border-box;
    display: grid;
    gap: 1.5rem;
    justify-content: center;
    padding: 1.5rem;
}

.num0,
.numNoir,
.numRouge {
    color: transparent;
}

@media (max-width: 600px) {
    .verification {
        font-size: 1.2rem;
    }
}

@media (max-height: 350px) {
    h1 {
        font-size: 1rem;
    }

    .stationChoisie {
        font-size: 0.9rem;
    }

    .verification {
        font-size: 0.9rem;
    }
}