.affichageCalcul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.15rem;

    img {
        height: 7rem;
    }
}

.question {
    font-size: 2rem;
    color: white;
    text-align: center;
    font-family: "Lora";
}

.encartReponse {
    padding: 3rem;
    box-shadow: 0px 0px 20px 20px transparent;
    border-radius: 15%;
}


.formulaireReponse {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;

    input {
        height: 1.5rem;
        width: 7.5rem;
        display: flex;
        text-align: center;
        font-size: 1rem;
    }

    button {
        width: 5.5rem;
        font-size: 1.2rem;
    }
}

.mauvaiseReponse {
    padding: 3rem;
    box-shadow: 0px 0px 20px 20px rgb(255 0 0 / 58%);
    border-radius: 15%;

}

.bonneReponse {
    padding: 3rem;
    box-shadow: 0px 0px 20px 20px rgba(38, 255, 0, 0.58);
    border-radius: 15%;
}

/* telephone portrait */
@media (max-width: 450px) {
    .affichageCalcul {
        img {
            height: 4.5rem;
        }
    }

    .formulaireReponse {
        button {
            width: 4rem;
            font-size: 0.8rem;
        }
    }
}

/* telephone paysage */
@media (max-height: 450px) {}