/* Styles de base pour le corps de la page */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Conteneur principal */
.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Styles pour les en-têtes */
h1, h2{
    color: #000000;
    margin-bottom: 20px;
}

h1 {
    font-size: 4em;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

h2 {
    font-size: 2em;
    border-bottom: 1px solid #007bff;
    padding-bottom: 5px;
}

h3 {
    font-size: 1.5em;
    color: #ffffff;
}

/* Paragraphes et liens */

a:hover {
    text-decoration: underline;
}

/* Listes */
ul, ol {
    margin: 20px 0;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Tableaux */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* Citations */
blockquote {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #f2f2f2;
    border-left: 5px solid #007bff;
    font-style: italic;
}

/* Media queries pour la réactivité */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }
}
