.app {
    min-height: initial !important;
    flex-grow: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.affichageCalcul {
    border: white solid 2px;
    background-color: #d18512;
    border-radius: 50%;
    width: 6rem;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.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: 2.5rem;
        width: 7.5rem;
        display: flex;
        text-align: center;
        font-size: 2rem;
    }

    button {
        height: 2rem;
        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%;
}


/* 
dialog[open] ~ * {
    display: none;
    }

#exercice {
    align-items: center;
    box-sizing: border-box;
    display: grid;
    gap: 1.5rem;
    grid-template-rows: 2fr 2fr;
    height: 80%;
    justify-content: center;
    padding: 1.5rem;
}

#sousApp {
    align-self: center;
} */


/* 

@media (max-width: 600px) {

    .contenuDialog {
        height: 250px;
        width: 290px;
    }

    .stations input[type=number] {
        height: 1rem;
        width: 1.8rem;
        font-size: 0.7rem;
    }

    .stations label {
        font-size: 0.6rem;
    }

    .stations input[type=checkbox] {
        width: 0.7rem;
    }

    .presets {
        font-size: 0.7rem;
        height: 1.5rem;
        width: 5rem;
    }

    .btnClose {
        font-size: 0.7rem;
        height: 1.5rem;
        width: 5rem;
    }

    .stations {
        grid-template-columns: 28% 4% 9% 8% 2% 30%;
    }

    .titreFormulaire {
        padding-bottom: 0.5rem;
        font-size: 1.1rem;
    }

} */