/* 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: #ffd6cc; /* Rouge clair */
    color: #333;
}

/* Header Styles */
header {
    background: #e53935; /* Rouge */
    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 #e53935; /* Rouge */
    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;
}

footer a {
    color: #e53935; /* Rouge */
    text-decoration: none;
}

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