/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2; /* Couleur de fond claire */
    color: #333; /* Couleur de texte foncée */
    margin: 0;
    padding: 0;
}

header {
    background-color: #007BFF; /* Couleur bleu vive */
    color: #fff;
    padding: 15px;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav {
    background-color: #0056b3; /* Couleur bleu plus sombre */
    padding: 5px;
    text-align: center;
    font-size: 0.9em; /* Menu plus petit */
}

nav a {
    color: #fff; /* Couleur de texte blanche */
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    padding: 20px;
}

section {
    background-color: #e0e0e0; /* Couleur de fond claire pour les sections */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

footer {
    background-color: #007BFF; /* Couleur bleu vive */
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
