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