body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
    text-align: center;
}

h1 {
    color: blue;
}

.content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

p, li {
    color: #333;
    line-height: 1.6;
}

ul {
    padding-left: 20px;
}

footer {
    background-color: #f5f5f5;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    border-top: 1px solid #ccc;
    bottom: 0;
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center; /* Centre les liens horizontalement */
    align-items: center; /* Aligne les liens verticalement */
    gap: 20px; /* Espace entre les liens */
}

.footer-links a {
    text-decoration: none; /* Supprime le soulignement */
    color: #007BFF; /* Couleur des liens */
    font-size: 14px; /* Ajuste la taille des liens */
}

.footer-links a:hover {
    text-decoration: underline; /* Souligne les liens au survol */
    color: #0056b3; /* Change la couleur au survol */
}