body {
    font-family: 'Georgia', serif;
    background-color: #000000; /* fond noir */
    color: #ffffff;            /* texte blanc */
    margin: 0;
    padding: 0;
}

header, footer {
    background-color: #222222; /* gris foncé très foncé pour header/footer (noir + subtil) */
    color: #ffffff;            /* texte blanc */
    text-align: center;
    padding: 1em 0;
}

a {
    color: #d80000; /* rouge vif */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #ffcc00; /* jaune vif */
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

.blog-card {
    background-color: #330000; /* rouge très foncé en fond */
    border: 1px solid #ffcc00; /* bord jaune vif */
    border-radius: 8px;
    padding: 1rem;
    width: 300px;
    box-shadow: 0 0 10px #d80000; /* ombre rouge vif */
}

h1, h2 {
    font-weight: normal;
    color: #ffcc00; /* jaune vif */
}

.excerpt {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #d80000; /* rouge vif */
}

footer nav a {
    margin: 0 0.5rem;
    color: #ffcc00; /* jaune vif */
}
