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

/* Body and Wrapper Styles */
body, html {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.wrapper {
    flex: 1;
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #e0f7e0; /* Vert clair */
    color: #333;
}

/* Header Styles */
header {
    background: #4caf50; /* Vert */
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5rem;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}

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

nav ul li a:hover {
    text-decoration: underline;
}

/* Main Styles */
main {
    padding: 2rem;
    text-align: center;
}

/* Content Styles */
.content {
    background: #fff;
    padding: 2rem;
    margin: auto;
    max-width: 800px;
    border: 2px solid #4caf50; /* Vert */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content h2 {
    margin-bottom: 1rem;
}

.content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.content p {
    text-align: justify;
    line-height: 1.6;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer a {
    color: #4caf50; /* Vert */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 0.5rem 0;
    }

    .content {
        padding: 1rem;
    }
}
