/* Reset pour harmoniser le style entre les navigateurs */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Style pour l'en-tête du site */
header {
    background-color: #0044cc;
    color: white;
    padding: 20px 10px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 26px;
}

header p {
    margin-top: 10px;
    font-size: 14px;
}

/* Style pour la navigation */
nav {
    background-color: #0033a0;
    padding: 15px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    margin: 10px;
    background-color: #0044cc;
    border-radius: 8px;
    display: inline-block;
    transition: background-color 0.3s;
    font-size: 16px;
    border: 2px solid white; /* Encadrement pour effet bouton */
}

nav a:hover {
    background-color: #002277;
}

/* Style pour le contenu de la page */
.content {
    padding: 40px 20px;
    text-align: center; /* Centre le texte */
}

.content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #0033a0;
}

.content img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center; /* Centre les paragraphes */
}

/* Style pour le pied de page */
footer {
    background-color: #0033a0;
    color: white;
    text-align: center;
    padding: 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    nav a {
        display: block;
        margin: 10px 0;
        padding: 10px;
        font-size: 16px;
    }

    .content h2 {
        font-size: 24px;
    }

    .content img {
        max-width: 100%;
    }
}
