/* Section 1 : Black background with white text */
.Black {
    background-color: black;
    color: white;
    padding: 20px; /* Ajoute un peu de padding pour améliorer la lisibilité */
    text-align: center; /* Centre le texte horizontalement */
}

/* Section 2 : White background with black text */
.White {
    background-color: white;
    color: black;
    padding: 20px; /* Ajoute un peu de padding pour améliorer la lisibilité */
    text-align: center; /* Centre le texte horizontalement */
}
