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

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


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


html{
	position: relative;
}


/*-----------------------ENTETE LOGO ET TITRE-----------------------*/

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


#entete .logo{
	float: left;
	left: 15px;
	top: 5px;
	width: 100px;
	height: 100px;
	position: fixed;
	transition-duration: 0.5s;
}


#entete .logo:hover{
	width: 150px;
	height: 150px;
}


#entete .deconnecter{
    position: absolute;
    right: 20px;
    top: 10px;
}


/*-----------------------MENU DE LOGIN-----------------------*/

#login{
	float: left;
	margin-left: 20px;
	transition-duration: 0.5s;
	text-align: center;
	animation: fadeIn ease 4s;
	-webkit-animation: fadeIn ease 4s;
	-moz-animation: fadeIn ease 4s;
	-o-animation: fadeIn ease 4s;
	-ms-animation: fadeIn ease 4s;
}


#login h1{
	margin-bottom: 10px;
	font-size: 22px;
	font-weight: bold;
	color: orange;
	text-align: center;
}


#login p{
	margin-bottom: 10px;
	font-size: 22px;
	font-weight: bold;
	color: white;
	text-align: center;
}


#login .box{
	height: 30px;
	width: 250px;
	font-size: 16px;
	border-radius: 20px;
	padding-left: 10px;
	margin-top: 5px;
}


#login input{
	margin-bottom: 2px;
}


#login .boutons{
	display: flex;
	justify-content: center;
	margin-top: 5px;
}


#login .bouton-login{
	margin-right: 10px;
}


#login .bouton-register{
	margin-left: 10px;
}


#login .valider{
	width: 96px;
	height: 25px;
	transition-duration: 0.5s;
}


#login .valider:hover{
	opacity: 0.5;
}


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

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


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


#menu .fond{
	margin-top: 50px;
	margin-bottom: 10px;
    background: rgba(146, 66, 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: 28px;
	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: 140px;
	text-align:center;
}


#menu .les-paniers{
	width: 190px;
	text-align:center;
}


#menu .mes-paniers{
	width: 200px;
	min-width: 170px;
	text-align:center;
}


#menu .mes-partages{
	width: 200px;
	min-width: 160px;
	text-align:center;
}


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


/*-----------------------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 .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;}
}