/* Importation d'une police de caractères élégante depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Roboto:wght@400;500&display=swap');

/* Styles généraux pour le corps de la page */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 2rem;
    background-color: #f9f9f9;
}

/* Conteneur principal pour centrer le contenu et limiter sa largeur */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Styles pour les titres */
h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    border-bottom: 2px solid #e2e2e2;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

/* Styles pour les paragraphes */
p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Styles pour les images */
.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Styles pour les liens */
a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Styles pour les citations ou textes mis en italique */
i, .italic-text {
    font-style: italic;
    color: #666;
}

/* Styles pour les listes */
ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

ul li, ol li {
    margin-bottom: 0.5rem;
}
