body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #fefae0;
    margin: 0;
    padding: 0;
}

header {
    background-color: #606c38;
    color: #fefae0;
    padding: 20px 0;
    display: flex;
    justify-content: center; /* Center both the logo and nav */
    align-items: center;
    flex-direction: column; /* Stack logo and nav vertically */
}

.logo {
    text-align: center;
    margin-bottom: 10px; /* Add spacing between logo and nav */
}

.logo a {
    text-decoration: none; /* Supprime le soulignement */
    color: inherit; /* Utilise la couleur du parent (héritée) */
}

.logo a:hover {
    text-decoration: none; /* Pas de soulignement au survol */
    color: inherit; /* Pas de changement de couleur au survol */
}

header h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 72px;
    margin: 0;
}

nav {
    width: 100%;
    text-align: center; /* Center the nav links */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center; /* Center the nav links horizontally */
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: #fefae0;
    text-decoration: none;
    font-weight: bold;
}


/* Section À propos */
.about {
    padding: 50px 20px;
    background-color: #fefae0;
    color: #fefae0;
    text-align: left;
}

.about h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #2b2b2b;
}

.about p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #2b2b2b;
}

footer {
    background-color: #0e0e0e;
    color: #fefae0;
    text-align: center;
    padding: 20px;
}