/*-----------------------MISE EN PAGE ELEMENTS-----------------------*/

*{
    margin: 0px;
    padding: 0px;
}


html, body{
    margin: 0;
    min-height: 100%;
	font-family: Arial;
}


html{
	position: relative;
	scroll-behavior: smooth;
}


main{
	margin-top: 175px;
}


/*-----------------------MENU DE NAVIGATION-----------------------*/

#menu{
	text-align: center;
	background: linear-gradient(pink, 25%, purple);
	border-bottom: solid 2px;
	height: 105px;
	position: fixed;
	width: 100%;
	top: 0px;
}


#menu .separation{
	background-color: white;
	height: 60px;
	width: 3px;
}


#menu a{
	font-size: 28px;
	font-weight: bold;
    text-decoration: none;
    color: white;
	transition-duration: 0.5s;
}


#menu .accueil{
	transition-duration: 0.2s;
}


#menu .accueil:hover{
	color: purple;
}


#menu .programme{
	transition-duration: 0.2s;
}


#menu .programme:hover{
	color: green;
}


#menu .galerie{
	transition-duration: 0.2s;
}


#menu .galerie:hover{
	color: orange;
}


#menu .partenaires{
	transition-duration: 0.2s;
}


#menu .partenaires:hover{
	color: cyan;
}


#menu .contact{
	transition-duration: 0.2s;
}


#menu .contact:hover{
	color: yellow;
}


#menu .faq{
	transition-duration: 0.2s;
}


#menu .faq:hover{
	color: blue;
}


#menu .logo{
	float: right;
	margin-right: 10px;
	width: 200px;
	height: 80px;
}


/*-----------------------PIED DE PAGE-----------------------*/

#footer{
	margin-top: auto;
	width: 100%;
	height: 100px;
    background: rgba(146, 66, 0, 0.4);
	border-top: solid 2px;
	bottom: 0;
	position: absolute;
}


#footer .scam{
	position: absolute;
	bottom: 8px;
	left: 8px;
	transition-duration: 0.5s;
}


#footer .scam:hover{
	opacity: 0.5;
}


#footer .conteneur{
	margin-top: 25px;
}


#footer p{
	font-size: 32px;
	color: white;
	font-weight: bold;
	text-align: center;
}


#footer .mentions{
	font-size: 16px;
	color: white;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}


/*-----------------------KEYFRAMES TRANSITIONS-----------------------*/

@keyframes fadeIn{
	0% {opacity:0;}
	100% {opacity:1;}
}


@-moz-keyframes fadeIn{
	0% {opacity:0;}
	100% {opacity:1;}
}


@-webkit-keyframes fadeIn{
	0% {opacity:0;}
	100% {opacity:1;}
}


@-o-keyframes fadeIn{
	0% {opacity:0;}
	100% {opacity:1;}
}


@-ms-keyframes fadeIn{
	0% {opacity:0;}
	100% {opacity:1;}
}