
body {
    border-block: none;
    margin-block: 0px;
    padding: 0px;
    font-family: Arial;
}



/* Styles pour le mode dyslexique */
.dyslexic {
    /* Ajoutez ici vos styles pour le mode dyslexique */
    /* Par exemple, changer la police, l'espacement des lettres, etc. */
    font-family: Arial, cursive; /* Exemple de changement de police */
    text-align: start;
    font-size: medium;
    word-spacing: 0.5em;
    letter-spacing: 0.2em;
}


.affiche_Intro {
    display: block;
    background-color: whitesmoke;
    border-radius:10px;
    margin-block: 5px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    height:auto;    
}

.affiche_Cours {
    display: block;
    background-color: whitesmoke;
    border-radius: 10px;
    margin-block: 5px;
    margin-top: 20px;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    height: auto;
    overflow: auto;
    text-align:justify;
}
.titre_Chapitre {
    display: table;
    border-spacing: 5px;
}

.affiche_Chapitre {
    display: table-cell;
    width: 100px;
    height: 30px;
    border-radius: 30px;
    background-color: darkturquoise;
    vertical-align: middle;
    text-align: center;
}

.affiche_Exercices {
    display: inline-block;
    float: inline-end;
    position:relative;
    width: 100px;
    height: 20px;
    margin-right: 50px;
    margin-top: 0px;
    border-radius: 10px;
    background-color: white;
    padding-top: 2px;
    font-size: 15px;
    text-align: center;
    border-block-color: black;
    border: double 2px;
}

.titre_Cours {
    position: absolute;
    margin-top: -60px;
    margin-left: 60px;
    color: rgba(68,114, 196);
}


.plein_Ecran {
    display: block;
    float: inline-end;
    margin-right: 10px;
    margin-top: 5px;
    background-color: white;
}

 /* Texte adapté ŕ l'image */
    .image-text-container {
        display: flex;
        align-items: center;
    }

    .image-text-container img {
        height: auto;
        margin-left: 10px; /* espace entre l'image et le texte */
    }
   
    .image-text-container p {
        flex: 1; /* permet au texte de prendre le reste de l'espace */
    }


