body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    text-align: center;
    background-color: #ff0000; /* Rouge */
    color: white;
    padding: 10px 0;
}

.photo-container {
    width: 100%;
    overflow: hidden;
}

.photo-container img {
    width: 100%;
    height: 300px; /* Ajuster la hauteur pour éviter le tronquage */
    object-fit: cover;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #0000ff; /* Bleu */
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

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

.content p {
    max-width: 600px;
    text-align: center;
    margin-bottom: 10px; /* Espace entre les lignes */
}

aside {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 8px;
}

.contact-info {
    text-align: center;
}

footer {
    text-align: center;
    background-color: #0000ff; /* Bleu */
    color: white;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
}
