body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    text-align: center;
    background-color: #800080; /* Violet */
    color: white;
    padding: 20px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #008000; /* Vert */
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

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

.photo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #008000;
    padding: 20px 0;
}

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

main {
    padding: 20px;
}

.content {
    text-align: center;
}

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

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

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

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