body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #e0f7fa; /* Couleur de fond bleu clair */
}
header {
    background: #004d40; /* Couleur verte foncée */
    color: #fff;
    padding: 1.5em 0;
    text-align: center;
    position: relative;
}
.title {
    font-size: 3em; /* Titre plus grand */
    animation: blink 1s infinite;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
nav {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    background: #00796b; /* Couleur verte moyenne */
}
nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.75em 1.5em;
    display: inline-block;
}
nav a:hover {
    background: #004d40; /* Couleur verte foncée au survol */
}
section {
    padding: 2em;
    text-align: center;
}
img.rounded {
    border-radius: 50%;
    width: 400px; /* Photos 2 fois plus grandes */
    height: 400px;
    object-fit: cover;
}
footer {
    background: #004d40; /* Couleur verte foncée */
    color: #fff;
    text-align: center;
    padding: 1em 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
