body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000;
}

header {
    background-color: #333;
    color: white;
    padding: 1em;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

section {
    padding: 20px 10px;
    margin-top: 10px;
    background-color: #f9f9f9;
}

#accueil {
    background-color: #000000;
    text-align: center;
}

#menu {
    background-color: #fff;
}

#menu .menu-item {
    margin-bottom: 20px;
}

#contact {
    background-color: #f1f1f1;
    text-align: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}
h1
		{
			color: black;
			text-decoration: underline;
		}
		
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}
