body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #FFE8FB;
}

/* En-tête */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #9E5F8C;
    color: white;
    padding: 15px;
}

/* Titre principal */
h1 {
    margin: 0;
}

/* Menu */
nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-family: 'Garamond', sans-serif;
}

nav a:hover {
    text-decoration: underline;
}

/* Section accueil */
.accueil {
    padding: 30px;
}

.accueil h2 {
    font-size: 28px;
    text-decoration: underline;
}

.accueil p {
    font-size: 20px;
    line-height: 1.5;
}

/* Section actualités */
.une {
    padding: 30px;
}

.une h2 {
    text-decoration: underline;
}

/* Articles */
.articles {
    display: flex;
    gap: 20px;
}

.article {
    width: 30%;
    padding: 15px;
    border-radius: 8px;
    background-color: #9E5F8C;
    color: white;
}

.article h3 {
    margin-top: 0;
}