body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

h2 {
    font-size: 1.8em;
    margin-top: 30px;
}

p {
    margin: 15px 0;
    font-size: 1.1em;
    line-height: 1.8;
}

ul {
    margin: 15px 0;
    padding-left: 20px;
}

a {
    color: #c00;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

h2 {
    font-size: 1.8em;
    margin-top: 30px;
    padding-left: 15px; /* Tabulation plus grande avant les titres de niveau 2 */
    position: relative; /* Positionnement relatif pour le positionnement absolu du pseudo-élément */
}

h2:before {
    content: "\002022"; /* Point médian Unicode */
    font-size: 1.5em;
    position: absolute;
    right: calc(100% - 5px); /* Positionne le point médian juste avant le début du texte */
    top: 50%; /* Centrage vertical */
    transform: translateY(-50%); /* Ajustement pour centrer verticalement */
    color: #ffc107; /* Jaune foncé */
}

/*\002022*/

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    bottom: 0;
}

.footer-txt{
    color: white;
}
