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

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

.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{
    display: inline-block;
    float:left, inline-end;
    padding-inline: 20px;
    margin-top: -10px;
}

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


/* 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;
}

