/*général*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f4ef;
    color: #333;
    margin: 0;
    padding: 0 20px;
    line-height: 1.6;
}

/* Titre principal */
h1 {
    text-align: center;
    font-size: 2.8em;
    color: #3e3e3e;
    margin-top: 30px;
}

/* Sous-titre */
h2 {
    text-align: center;
    font-size: 2em;
    color: #805d2d;
    margin-bottom: 10px;
    border-bottom: 2px solid #d4a373;
    padding-bottom: 5px;
    display: inline-block;
}

/* Paragraphe principal */
p {
    max-width: 800px;
    margin: 20px auto;
    font-size: 1.1em;
    text-align: justify;
    background-color: #fffbe7;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Liste des panégyriques */
li {
    text-align: center;
    font-weight: 500;
    margin: 8px 0;
    list-style-type: "🔸 ";
    color: #5c4421;
    animation: fadeIn 1s ease-in-out both;
}

/* Animation d'apparition douce */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Footer */
footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: green;
    color: rgb(2, 14, 3);
    font-weight: bold;
    font-size: 0.9em;
    border-top: 2px solid #0a8010;
}