/* Réinitialisation des marges et des paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	height:95%;
}
/* Styles pour le corps de la page */
body {
	font-size:1.4em;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f9f9f9;
    color: #333;
	height:95%;
}


/* Styles pour l'en-tête */
header {
    background-color: #26a18a8c;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Styles pour les titres de section */
h1, h2 {
    margin-bottom: 10px;
}

/* Styles pour les liens de navigation */
ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    color: #333;
    font-weight: bold;
}

/* Styles pour les sections */
section {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position:relative;
}

main {
	color :#fff;
	background-color: #0005;
	padding: 20px;
	position: absolute;
	top:0;
	width:100%;
}

/* Styles spécifiques pour chaque section */
section img {
	width:100%;

}

#evenements main {
	bottom:0 !important;
	background-color: #0008;
	top:auto;
}

#equipe main{
	top:auto;
	bottom:0 !important;
	background-color: #0008;
}

#contact main {
	top:auto;
	bottom:0 !important;
	background-color: #0008;
}

footer {
	padding: 10px;
	font-size:0.1em;
}

aside {
	float: right;
	padding: 20px;
}
article {
	padding: 20px;
}

#container {
	max-width: 900px;
	margin:auto;
}
