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

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


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


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


main{
	margin-bottom: 250px;
}


/*-----------------------ENTETE TITRE-----------------------*/

#entete{
	text-align: center;
}


#entete h1{
	text-align: center;
	font-size: 50px;
	color: white;
	margin-top: 8px;
	font-family: Arial;
}


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

#menu .menu {
	font-family: Arial;
    display: flex;
	padding-top: 12px; 	
    justify-content: center;
	animation: fadeIn ease 0.5s;
	-webkit-animation: fadeIn ease 0.5s;
	-moz-animation: fadeIn ease 0.5s;
	-o-animation: fadeIn ease 0.5s;
	-ms-animation: fadeIn ease 0.5s;
}


#menu ul{
	list-style-type: none;
}


#menu .fond{
	margin-top: 50px;
	margin-bottom: 75px;
    background: rgba(0,0,0,0.4);
	border-top: solid 2px;
	border-bottom: solid 2px;
	height: 80px;
}


#menu .separation{
	background-color: white;
	margin-top: auto;
	margin-bottom: auto;
	height: 40px;
	width: 2px;
}


#menu .menu a{
	font-size: 24px;
	font-weight: bold;
    display: inline-block; /*Toute la surface sera cliquable*/
    text-decoration: none;
    color: white;
    border-bottom: 2px solid transparent;/*Evite le décalage des éléments sous le menu à cause de la bordure en :hover*/
    padding: 10px 0px;            /* Largeur minimale des liens */
	transition-duration: 0.5s;
}


#menu .menu a:hover{
	opacity: 0.8;
	color: yellow;
}


#menu .accueil {
	width: 130px;
	text-align:center;
}


#menu .reglement{
	width: 150px;
	text-align:center;
}


#menu .jouer{
	width: 210px;
	text-align:center;
}


#menu .terrain{
	width: 170px;
	text-align:center;
}


#menu .parties{
	width: 160px;
	text-align:center;
}


#menu .galerie{
	width: 110px;
	text-align:center;
}


#menu .reseaux{
	width: 130px;
	text-align:center;
}


/*-----------------------INTRODUCTION-----------------------*/

#intro{
	width: 80%;
	margin: 0 auto;
	animation: fadeIn ease 0.5s;
	-webkit-animation: fadeIn ease 0.5s;
	-moz-animation: fadeIn ease 0.5s;
	-o-animation: fadeIn ease 0.5s;
	-ms-animation: fadeIn ease 0.5s;
}


#intro p{
	font-family: Calibri Light;
	font-size: 28px;
	color: white;
	font-weight: bold;
	text-align: center;
}


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

#footer{
	margin-top: auto; 
	width: 100%; 
	height: 100px; 
	background: rgba(0,0,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;}
}