body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9; /* Couleur de fond */
}

header {
    background-color: #d32f2f; /* Rouge vif pour l'en-tête */
    color: white;
    text-align: center;
    padding: 15px;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

nav {
    background-color: #b71c1c; /* Rouge plus foncé pour le menu */
    color: white;
    text-align: center;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav li {
    display: inline-block;
    margin: 0 10px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #8c1c1c; /* Rouge plus foncé au survol */
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px;
}

.photo {
    margin-bottom: 20px;
}

.photo img {
    max-width: 100%; /* Ajuster la largeur selon les exigences */
    height: auto;
    border-radius: 5px;
}

footer {
    background-color: #d32f2f; /* Rouge vif pour le pied de page */
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
