* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f8ff; /* Bleu clair pour le fond */
}

.container {
    width: 90%;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: 25px; /* Coins arrondis */
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
}

header {
    margin-bottom: 20px; /* Espace entre le titre et le menu */
}

nav {
    margin-bottom: 20px; /* Espace entre le menu et la photo */
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 0;
}

nav ul li {
    position: relative;
    padding: 0 20px;
}

nav ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #ff8c00; /* Orange foncé pour les séparateurs */
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 0;
    color: #ff8c00; /* Liens en orange */
}

nav a:hover {
    color: #1e90ff; /* Bleu lors du survol */
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.content img {
    max-width: 100%;
    max-height: 300px;
    margin-bottom: 15px;
    border-radius: 15px; /* Coins arrondis pour les images */
    border: 2px solid transparent;
    animation: clignote 1s infinite; /* Liseré clignotant */
}

@keyframes clignote {
    0% { border-color: #1e90ff; } /* Bordure bleue */
    50% { border-color: #ff8c00; } /* Bordure orange */
    100% { border-color: #1e90ff; } /* Repasser au bleu */
}

.content p {
    margin: 10px 0;
}

footer {
    font-size: 14px;
    color: #777;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 20px;
        border-radius: 15px;
    }

    nav ul {
        flex-direction: column;
        margin-bottom: 20px;
    }

    nav ul li:not(:last-child)::after {
        display: none;
    }

    nav ul li {
        padding: 10px 0;
    }

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

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        padding: 5px 0;
    }

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

    footer {
        font-size: 12px;
    }
}
