/* Styles de base */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center; /* Centrer tous les textes sur le body */
}

/* Header */
header {
    background-color: #0021b3; /* Bleu */
    color: orange; /* Couleur du texte du header en orange */
    padding: 20px 0;
    text-align: center;
    font-size: 1.5em;
}

/* Menu */
nav {
    background-color: #0056b3; /* Bleu */
    overflow: hidden;
}

nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    float: left; /* Utilisé pour aligner les liens à gauche, sera remplacé par flexbox pour un meilleur alignement */
    display: block;
    text-align: center;
}

nav a:hover {
    background-color: #ffa500; /* Orange */
    color: black;
}

/* Footer */
footer {
    background-color: #0056b3; /* Bleu */
    color: orange; /* Changer la couleur du texte du footer en orange */
    padding: 10px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer a {
    color: orange; /* Lien dans le footer en orange */
    text-decoration: none;
}

footer a:hover {
    color: #ffa500; /* Orange au survol */
}

/* Styles responsives */
@media (max-width: 600px) {
    nav a {
        float: none;
        width: 100%;
        text-align: left; /* Aligner à gauche sur petits écrans */
    }
}

/* Centrer l'image */
.center-image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

/* Styles pour les paragraphes */
p {
    margin: 2px 0; /* Ajout de marge verticale */
    padding: 2px; /* Ajout de padding interne */
    text-align: center; /* Centrer le texte des paragraphes */
}
