.question {
    padding: 1rem 0;
}


.question,
.annonceChoisie,
.verification {
    display: flex;
    justify-content: center;
    color: white;
    text-align: center;
}

.annonceChoisie,
.verification {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.verification {
    height: 1rem;
}

.annonceChoisie {
    font-family: "Lora";
}

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

.numRouge {
    color: red;
}

.num0 {
    color: rgb(0, 255, 0);
}

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

.gomme,
.clear,
.valider,
.suivant,
.afficherReponse {
    flex: 1;
    min-width: 70px;
    transition: background 0.3s ease;
    font-size: 0.8rem;
}

.boutonCache {
    display: none;
}

.gomme img {
    width: 1.8rem;
    height: 1.8rem;
}

.gommeActive {
    background-color: #9c4b4b;
}

.gomme:hover,
.clear:hover,
.valider:hover,
.suivant:hover {
    background: #f0ad2c;
}

/* Responsive mobile */
@media (max-width: 450px) {
    .suppr {
        flex-wrap: wrap;
        align-items: stretch;
    }

    .gomme,
    .clear,
    .valider,
    .suivant {
        width: auto;
        font-size: 0.7rem;
        align-self: center;
        min-height: 19px;
    }

    .gomme img {
        width: 1rem;
        height: 1rem;
    }

    h1 {
        padding: 1.7rem 0 0.5rem;
        font-size: 1rem;
        max-width: 80%;
    }
}

@media (max-height: 450px) {
    h1 {
        font-size: 1rem;
        padding: 0 0 0.5rem 0;
    }

    .annonceChoisie {
        font-size: 0.8rem;
    }

    .gomme,
    .clear,
    .valider,
    .suivant,
    .afficherReponse {
        width: auto;
        font-size: 0.7rem;
        align-self: center;
        min-height: 19px;
    }

    .gomme img {
        width: 0.88rem;
        height: 0.88rem;
    }
    .verification {
        font-size: 0.7rem;
    }
}