/* Scroll fluide */
html {
    scroll-behavior: smooth;
}

/* Barre de navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #4E938A;
    padding: 10px 0;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
	color: #ffffff;
	font-family: "Helvetica", Arial, sans-serif;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

@media (max-width: 600px) { 
	.navbar a { 
	font-size: 12px;
	} 
}

.navbar a:hover {
    color: #ECA740;
}

/* Sections */
section {
    padding: 20px 20px;
}

section:nth-child(odd) {
    background: #ffffff;
}

section:nth-child(even) {
    background: #ffffff;
}
