h1 {                      /* Cette règle définit le style du titre principal. */
  color: rgb(1, 14, 111);           /* La couleur du texte est verte. */
  text-align: center;     /* L'alignement du texte est centré. */
}
h2 {                      /* Cette règle définit le style du titre principal. */
  color: rgb(92, 2, 122);           /* La couleur du texte est verte. */
  text-align: left;     /* L'alignement du texte est centré. */
}
p { 
    color: rgb(0, 0, 0);
    text-align: left;
}



ul { 
    color: rgb(210, 112, 215);
    text-align: left;
}

img{
    border-radius: 8px;
    width: 400px

}

body {
  background-color: rgb(203, 224, 231);
    margin-left: 5%;
  margin-right: 5%;
}



.titre-principal {
  background-color: rgb(200, 100, 246);   /* couleur d’arrière-plan */
  color: rgb(0, 0, 0);               /* couleur du texte */
  padding: 20px;              /* espace intérieur */
  text-align: center;         /* centrer le texte */
  border-radius: 10px;        /* coins arrondis (optionnel) */
}

h3 { 
    color: rgb(92, 2, 122);
    text-align: center;
    font-size: 23px;
}

.dals {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 300px; /* optionnel : ajuste la taille */
}

.texte dals {
  text-align: center;
}

.texte-centre {
  text-align: center;
}