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

}

.board,
.main {
    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: 1rem;

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

    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%;
}