body {
    font-family: Arial, sans-serif; /* Vous pouvez changer "Arial" par la police de votre choix */
    margin: 0;
    padding: 0;
    background-color: white; /* Change le fond en blanc */
}
header, footer {
    background-color: white; /* Change le fond en blanc */
    color: black; /* Change la couleur du texte en noir */
    text-align: center;
    padding: 1em 0;
}
nav ul {
    list-style-type: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin: 0 10px;
}
nav ul li a {
    color: black; /* Change la couleur des liens en noir */
    text-decoration: none;
}
main {
    padding: 2em;
    text-align: center;
}
