/* ======================== DÉLIMITATION & MISE EN FORME DE BASE GÉNÉRALE ========================  */
*, ::after, ::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    background-repeat: no-repeat;
    background-size: cover;
}
html{
    width: 100%;
    height: 100%;
    background: var(--bgBody);
    font-size: 15px;
    scroll-behavior: smooth;
}

/* ======================== MISE EN FORME SPÉCIFIQUE À CERTAINS ÉLÉMENTS ========================  */
h1, div{
    font-family: var(--typoTitre);
    font-optical-sizing: auto;
    font-style: normal;
}
h1{
    font-size: var(--fontSize2);
    font-weight: 600;
}
h2, h4, label{
    font-family: var(--typoAutreTexte);
    font-optical-sizing: auto;
    font-style: normal;
}
label{
    font-weight: 600;
}
input{
    height: auto;
    border: 2px solid #e0e5ff;
}
input[type="radio"]{
    width: 1rem;
    height: 1rem;
}
#formulaire input:valid, #formulaire textarea:valid, #formulaire select:valid{
    background-color: rgba(203, 246, 206, 0.3);
    border-color: rgb(100, 200, 100);
}
input::placeholder, textarea::placeholder{
    font-size: 0.95rem;
    color: #999;
}
textarea{
    height: 10vh;
    border: 2px solid #e0e5ff;
    font-family: var(--typoAutreTexte);
}

/* ======================== VARIABLES DE PERSONNALISATION CSS ========================  */
:root{
    --typoTitre : "Kantumruy Pro", sans-serif ;
    --typoAutreTexte : "Raleway", sans-serif;
    --fontSize1 : clamp(3rem, 9vw, 12rem);
    --fontSize2 : clamp(2rem, 3vw, 9rem);
    --fontSize3 : clamp(1rem, 1.2vw, 9rem);
    --fontSize4 : clamp(0.7rem, 1vw, 9rem);
    --bgBody : rgb(220, 225, 251);
    --bgFooter : rgb(0, 30, 204);
    --mouse-x: 0px;
    --mouse-y: 0px;
    --curseurEcrire : url('../images/curseur/write.png');
    --curseurRadio : url('../images/curseur/press-button.png');
    --curseurSelect : url('../images/curseur/click.png');
    --curseurDate : url('../images/curseur/calendar.png');
}


/* ======================== GÉNÉRALISATION DU BODY & DU MAIN ========================  */
body{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
main{
    animation: transitionCercle 600ms cubic-bezier(.17,.14,.66,.97) both;
}
input{
    font-size: 1rem;
}


/* ======================== L'ENTÊTE PAR DÉFAUT ========================  */
header{
    min-height: 15vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 3;
}
#titre-devoir{
    display: flex;
    justify-content: center;
    flex-grow: 1;
    font-size: var(--fontSize2);
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.cours, .prof{
    margin-right: 30px;
    font-weight: 400;
    font-size: var(--fontSize3);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* ======================== MAIN D'ACCUEIL ========================  */
#accueil{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
#accueil::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}
.bvn, .motQuestionnaire, .suite-bvn{
    opacity: 0;
    position: relative;
    z-index: 1;
}
.bvn{
    animation: versLeBas 2s ease-in-out forwards;
    font-size: var(--fontSize2);
    color: white;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
}
.motQuestionnaire{
    display: flex;
    animation: versLeBas 2.5s ease-in forwards, tourner 2.35s 75ms ease-in forwards;
    font-weight: 900;
    font-size: var(--fontSize1);
    background: linear-gradient(45deg, #fff, #f0f0f0, #fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(4px 4px 12px rgba(0, 0, 0, 0.5));
}
.suite-bvn{
    animation: versLeHaut 3s cubic-bezier(0,.75,1,1.36) 4s 1 forwards;
    font-size: var(--fontSize2);
    color: white;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
}


/* ======================== MAIN DU FORMULAIRE ========================  */
#formulaire{
    width: 60%;
    max-width: 800px;
    height: 100%;
    margin: 3rem auto;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
#formulaire > h1{
    text-align: center;
    color: white;
    margin-bottom: 1rem;
    font-size: var(--fontSize2);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}
.identification, .genre, .naissance, .courriel, .description, .occupation, .niv-etude, .prog-etude{
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.identification h4, .genre h4{
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
#formulaire label{
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.nom-prenom, .f-h{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nom-prenom > input, .courriel > input, .formation > input{
    width: 100%;
    padding: 0.75rem 1rem;
    caret-color: #667eea;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}
.nom-prenom > input:focus, .courriel > input:focus, .formation > input:focus{
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}
.nom-prenom > input:hover, .courriel > input:hover, .formation > input:hover{
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.95);
}
.f-h{
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.f-h div{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.f-h div:hover{
    border-color: white;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}
.f-h input[type="radio"]{
    width: 1.2rem;
    height: 1.2rem;
    accent-color: #667eea;
    cursor: pointer;
}
.f-h label{
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
    color: #333;
}
.naissance > input{
    width: 200px;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}
.naissance > input:focus{
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}
.occupation > select, .niv-etude > select{
    width: 100%;
    max-width: 300px;
    padding: 0.75rem 1rem;
    height: auto;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    cursor: pointer;
}
.occupation > select:focus, .niv-etude > select:focus{
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}
.occupation > select:hover, .niv-etude > select:hover{
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.95);
}
textarea{
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-family: var(--typoAutreTexte);
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}
textarea:focus{
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}
textarea:hover{
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.95);
}


/* ======================== MAIN DU QUESTIONNAIRE ========================  */
#questionnaire{
    width: 85%;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
#questionnaire > h1{
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    font-size: var(--fontSize2);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}
#questionnaire input{
    display: none;
}
#questionnaire .interrogation{
    font-size: var(--fontSize3);
    font-family: var(--typoAutreTexte);
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}
.question{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}
/* C'est pour sélectionner les questions sans image pour les mettre les réponses en colonne */
.q2:nth-child(2) .lesReponses, .q5:nth-child(2) .lesReponses, .q7:nth-child(1) .lesReponses, .q9:nth-child(3) .lesReponses{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.q1, .q2, .q3, .q4, .q5, .q6, .q7, .q8, .q9{
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(0);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
.q1:hover, .q2:hover, .q3:hover, .q4:hover, .q5:hover, .q6:hover, .q7:hover, .q8:hover, .q9:hover{
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}
.q1.visible, .q3.visible, .q5.visible, .q7.visible, .q9.visible{
    animation: fondu-a-gauche 600ms ease-in forwards;
}
.q2.visible, .q4.visible, .q6.visible, .q8.visible{
    animation: fondu-a-droite 600ms cubic-bezier(.4,.87,.66,.97) forwards;
}
.lesReponses{
    display: flex;
    gap: 1.5rem;
}
.lesReponses div{
    width: 100%;
}
.lesReponses label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    font-family: var(--typoAutreTexte);
    font-size: var(--fontSize4);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #333;
}
/* Ici, la couleur est appliquée au survol et quand c'est coché */
.lesReponses label:hover{
    background: rgba(255, 255, 255, 0.95);
    border-color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}
#questionnaire input[type="radio"]:checked + label {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    backdrop-filter: blur(15px);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
    transform: scale(1.03);
}
.lesReponses img {
    width: 100%;
    height: 18vh;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.lesReponses label:hover img{
    transform: scale(1.05);
}
.indication{
    width: 100%;
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.indication:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.4);
    border-color: white;
}
.indication > h4{
    font-size: var(--fontSize4);
    font-family: var(--typoAutreTexte);
    font-weight: 500;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}
.indication > h4 span{
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}


/* ======================== PIED DE PAGE PAR DÉFAUT ========================  */
footer{
    min-height: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
}
.bouton{
    position: relative;
    width: 12rem;
    min-height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #667eea;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--fontSize3);
    font-family: var(--typoAutreTexte);
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}
.bouton:hover{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border-color: white;
}
.bouton::before{
    display: none;
}

.inactif{
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(0.7);
}


/* ======================== LE CURSEUR PERSONNALISÉ POUR DIFFÉRENT MANIPULATION ========================  */
.curseur {
    position: fixed;
    width: 1.5em;
    height: 1.5rem;
    border-radius: 50%;
    background-color: #8a2387;
    top: calc(var(--mouse-y));
    left: calc(var(--mouse-x));
    pointer-events: none;
    will-change: top, left;
    transition: width 0.25s, height 0.25s;
    z-index: 100;
}
.formeCurseurBtn{
    border: 3px solid white;
    box-shadow: 0 0 6px 3px #f27121;
    border-radius: 50%;
}
.formeCurseurBtnTerminer{
    border: 6px double white;
}
.formeCurseurEcrire, .formeCurseurSelect, .formeCurseurRadio, .formeCurseurCalendrier{
   background-color: transparent;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    transform: translate(-50%, -50%);
}
.formeCurseurEcrire{
    background-image: var(--curseurEcrire);
}
.formeCurseurRadio{
   background-image: var(--curseurRadio);
}
.formeCurseurSelect{
    background-image: var(--curseurSelect);
}
.formeCurseurCalendrier{
    background-image: var(--curseurDate);
}

#reussite, #echec {
    height: 100vh;
    display: none;
    padding: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
    position: relative;
}

#reussite::before, #echec::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
    animation: pulseResult 3s ease-in-out infinite;
}

#reussite::before {
    background: radial-gradient(circle, rgba(76, 175, 80, 0.4) 0%, transparent 70%);
}

#echec::before {
    background: radial-gradient(circle, rgba(244, 67, 54, 0.4) 0%, transparent 70%);
}

#reussite h2, #echec h2 {
    color: white;
    font-family: var(--typoTitre);
    font-size: var(--fontSize2);
    font-weight: 700;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#reussite p, #echec p {
    color: white;
    font-family: var(--typoAutreTexte);
    font-size: var(--fontSize3);
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
}


/* C'est placé ici pour garder les mains caché avant un événement JS pour les affichés */
#formulaire,
#questionnaire,
.btn-dbt-quiz,
.btn-terminer,
.btn-n-essaie {
    display: none;
}
/* ======================== LES IMAGES CLÉS POUR LES ANIMATIONS ========================  */

/* Ce sont les images clés pour la transition d'une page à une autre */
@keyframes transitionCercle {
  from {
    clip-path: circle(0%);
  }
  to {
    clip-path: circle(300%);
  }
}

/* Ce sont les images clés pour les éléments de la page d'accueil */
@keyframes versLeBas{
    from{
        transform: translateY(-300%);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes versLeHaut{
    from{
        transform: translateY(300%);
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes tourner{
    from{
        transform: rotateX(-180deg);
    }
    to{
        transform: rotateX(180deg);
    }
}

/* Ce sont les images clés pour l'apparition des questions sur l'événement "scroll" */
@keyframes fondu-a-gauche {
    0% {
        translate: -100%;
        opacity: 0;
    }

    100% {
        translate: 0%;
        opacity: 1;
    }
}

@keyframes fondu-a-droite {
    0% {
        translate: 100%;
        opacity: 0;
    }

    100% {
        translate: 0%;
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes pulseResult {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}


/* ======================== VERSION MOBILE ========================  */
/* Cette portion de code permet d'adapter l'entête en version mobile */
@media (max-width: 576px){
    header {
        display: flex;
        flex-direction: column;
        padding: 1rem;
    }
    #titre-devoir{
        flex-grow: 0;
    }
    .cours, .prof{
        margin-right: 0;
        text-align: center;
    }
    /* Page d'accueil responsive */
    #accueil{
        padding: 1rem;
    }
    .bvn, .suite-bvn{
        font-size: 1.5rem;
    }
    .motQuestionnaire{
        font-size: 3rem;
    }
    /* Formulaire responsive */
    #formulaire{
        width: 95%;
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }
    #formulaire > h1{
        font-size: 1.75rem;
    }
    .nom-prenom{
        flex-direction: column;
        gap: 1rem;
    }
    .f-h{
        gap: 1rem;
        justify-content: center;
    }
    .f-h div{
        flex: 1;
        justify-content: center;
        min-width: 80px;
    }
    .naissance > input{
        width: 100%;
    }
    .occupation > select, .niv-etude > select{
        max-width: 100%;
    }
    /* Questionnaire responsive */
    #questionnaire{
        width: 95%;
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }
    #questionnaire > h1{
        font-size: 1.75rem;
    }
    .question{
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .q1, .q2, .q3, .q4, .q5, .q6, .q7, .q8, .q9{
        padding: 1.5rem;
        gap: 1rem;
    }
    .q1 .lesReponses, .q3 .lesReponses, .q4 .lesReponses, .q6 .lesReponses, .q8 .lesReponses{
        flex-direction: column;
        gap: 1rem;
    }
    .lesReponses img {
        height: 12vh;
    }
    .indication{
        width: 95%;
        padding: 1rem 1.5rem;
    }
    .indication > h4{
        font-size: 0.9rem;
    }
    /* Footer responsive */
    footer{
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    .bouton{
        width: 45%;
        min-width: 120px;
        font-size: 0.9rem;
    }
    /* Pages de résultats responsive */
    #reussite h2, #echec h2{
        font-size: 1.75rem;
        padding: 1rem 2rem;
    }
    #reussite p, #echec p{
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    #reussite::before, #echec::before{
        width: 300px;
        height: 300px;
    }
}

