/* CSS Document */
/*ANCRE DOUCE*/

.retour{
	clear: both;
}

img{
	display: block;
	} /*Occupe toute la largeur disponible. Lorsque 2 éléments blocs se suivent dans une page, ils sont positionnés (par défaut) l'un sous l'autre.*/

body{
	height: 100%;
}

html{
	height: 100%;
}

a:link 
{ 
	text-decoration:none; 
} 

h2{
	font-family: 'Verdana';
	color: white;
	font-size: 50px;
	padding: 90px 25px 25px 25px;
}
/*HEADER*/

/*NAV*/
nav{
	position: fixed;
	top: 0px;
	right: 0px;
	z-index: 3;
	transition: all ease 1s;
}

nav ul{
    display: flex; /* Transformation en flexbox */
    margin:10px;
	justify-content: right; /* Alignements des liens dans le menu */
	list-style-type: none;
	background: grey;
	opacity: 0.8;
}


nav a{   
    color: white;
	display: block;
    min-width: 150px;             /* Largeur minimale des liens */   
    text-align: center;           /* Centrage du texte */ 
	font-size: 50px;
	transition: all ease 1s;
}

/*!nav ul li a:hover{   
    opacity: 0.5;
}*/

/*SECTION*/
section{
	min-height: 100vh;
}

#home{
	background-color :green;
	position: relative;	
}

#graduation{
	background-color :blue;
	position: relative;	
}

#users{
	background-color :orange;
	position: relative;	
}

#send{
	background-color :red;
	position: relative;	
}

.big-ic{
	z-index: 2; /*Positionner un élément par couche - A VERIF*/
	font-size: 300px;
	position: absolute;
	right: 70px;
	bottom: 0px;
	color: white;
    opacity: 0.7;
}

.icon-arrow-circle-down-solid{
	position: absolute;
	left: 50%; /* position the left Edge of the element at the middle of the parent */
	transform: translate(-50%, -50%); /* This is a shorthand of translateX(-50%) and translateY(-50%) */
	bottom: 10px;
	color: white;
	font-size: 60px;
}

.icon-arrow-alt-circle-up-regular{
	position: absolute;
	right: 5px; /* position the left Edge of the element at the middle of the parent */
	top: 50%;
	bottom: 10px;
	color: white;
	font-size: 40px;
}

.div_inc{
	position: absolute;
	bottom: -29px;
	left: -3px;
	height: 80px;
	width: 2000px;
	-moz-transform: rotate(-2deg);
	-webkit-transform: rotate(-2deg);
	-o-transform: rotate(-2deg);
	-ms-transform: rotate(-2deg);
	transform: rotate(-2deg);
	z-index: 1;
}

#div_inc_home{
		background-color: green;
}

#div_inc_graduation{
	background-color: blue;
}

#div_inc_users{
	background-color: orange;
}

.active{
	background: white;
	opacity: 0.5;
	color: grey;
}

.petit{
	transition: all ease 1s;
}

.petit a{
	font-size: 25px;
	transition: all ease 1s;
	min-width: 125px; 
	padding: 3px 0;
}
/*FOOTER*/