/* 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;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #56A0D3; /* Bleu-vert */
    color: #000; /* Noir */
}

.wrapper {
    flex: 1;
}

/* Header Styles */
header {
    background: linear-gradient(to right, #56A0D3, #FF4081); /* Dégradé de bleu-vert à rose */
    color: #000; /* Noir */
    padding: 2rem 0;
    text-align: center;
}

.header-title {
    background-color: #FF4081; /* Rose */
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

header h1 {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.header-contact {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

nav ul {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
}

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

nav ul li a {
    color: #000; /* Noir */
    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 #56A0D3; /* Bleu-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;
}

.keyword {
    color: #FF4081; /* Rose */
    font-weight: bold;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

footer a {
    color: #FF4081; /* Rose */
    text-decoration: none;
}

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