/*
font-family: 'Roboto', sans-serif;
#66bd6c vert
#5940a3 violet
#48704b vert foncé
#bd9169 beige
*/


.retour {
	clear: both;
}

section {
	height: 100vh;

}
#s1 {
	background-color: #66bd6c;
	
	position: relative;
}

#s2 {
	background-color: #5940a3;
	
	position: relative;
}

#s3 {
	background-color: #48704b;

	position: relative;
}

#s4 {
	background-color: #bd9169;

	position: relative;
}

h1 {
	font-size: 5vw;
	margin: 0;
	font-family: 'Roboto', sans-serif;
	color: rgba(255,255,255,0.5);
	text-transform: uppercase;
}


nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	background-color: rgba(0,0,0,0.5);
	width: 400px;
	line-height: 30px;
}

nav ul {
	padding: 0;
}

nav li {
	list-style: none;
	float: left;
	display: block;
}

nav a {
	transition: all 300ms ease;
	padding: 10px 20px;
	display: block;
	color: white;
	font-size: 20px;
	text-decoration: none;
}

nav a:hover, .fleche:hover, #up:hover{
	transition: all 800ms ease;
	-moz-transform: scale(1.5) rotate(15deg);
	-webkit-transform: scale(1.5) rotate(15deg);
	-o-transform: scale(1.5) rotate(15deg);
	-ms-transform: scale(1.5) rotate(15deg);
	transform: scale(1.5) rotate(15deg);;
}

.fleche:hover, #up:hover{
	transition: all 800ms ease; 
	-moz-transform: scale(1.5) rotate(360deg);
	-webkit-transform: scale(1.5) rotate(360deg);
	-o-transform: scale(1.5) rotate(360deg);
	-ms-transform: scale(1.5) rotate(360deg);
	transform: scale(1.5) rotate(360deg);;
}

.gdicon {
	position: absolute;
	right: 10px;
	bottom: 0;
	display: block;
	font-size: 500px;
	color: rgba(255,255,255,0.5)
}

.fleche {
	position: absolute;
	left: 50%;
	bottom: 20px;
	color: rgba(255,255,255,0.5);
	font-size: 30px;
	transition: all 300ms ease;
}

#up {
	position: fixed;
	right: 20px;
	bottom: 20px;
	display: block;
	font-size: 30px;
	color: rgba(255,255,255,0.5);
	z-index: 10;
	transition: all 300ms ease;
}




