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

header {
    background-color: #ff69b4; /* Rose */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

.photo-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
}

.photo-container img {
    width: 100%;
    height: auto;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}

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: 5px;
}

.contact-info p {
    margin: 5px 0;
    text-align: right;
}

footer {
    background-color: #ff69b4; /* Rose */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

@media (max-width: 768px) {
    aside {
        position: static;
        transform: none;
        margin-top: 20px;
        text-align: center;
    }
}
