* {
	margin: 0 auto;
}

html, body { 
	height: 100%;
}

body {
	font-family: "Dosis", sans-serif;
	letter-spacing: .1em;
	/*background-image:url("background.jpeg");*/
	background-color: #F9F9FB;
	background-size: cover;
}

header {
	background-color: #08D7D4;
	background-size: cover;
	height: 20%;
	display: flex;
	align-items: center;
	
}

header a {
	color: #EB8238;
	font-weight: bolder;
	text-decoration: none;
}

img {
	height: 100px;
}

.info {
	display: flex;
	list-style : none;
	text-align: center;
	justify-content : space-between;
	font-size: 18px;
	padding: 10px;
	align-items: center;
}

.info li {
	padding: 5%;
}

.connexion {
	list-style : none;
	text-align: center;
	justify-content : space-between;
	font-size: 18px;
}

.q-a {
	margin: 2%;
	color: #564F4F;
}

h1 {
	text-align: center;
	text-shadow: 5px 5px 10px rgba(0,0,0,0.3);
}

h2 {
	margin-bottom: 1%;
}

p {
	font-size: 20px;
}

.email {
	color: #3E61C0;
	text-decoration: underline;
}

footer ul {
	padding-bottom: 8%;
	align-items: center;
	bottom: 0px;
}

footer {
	align-items: center;
	text-align: left;
	width: 100%;
	background-size: cover;
	margin-right: 2%;
	margin-top: 2%;
}

footer li {
	display: inline-block;
	list-style: none;
	font-size: 16px;
	color: #000000;
}

footer li a {
	color: #000000;
	text-decoration: none;
}

.nav-link {
	text-decoration: none;
	color: #eee;
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
	padding: 3px 0;
	color: #564F4F
}

.nav-link::after {
	content: "";
	width: 100%;
	height: 2px;
	background-color: #EB8238;
	position: absolute;
	right: 0;
	transform: scaleX(0);
	transition: transform 0.5s;
	bottom: 0;
	transform-origin: left;
}

.nav-link:hover::after {
	transform: scaleX(1);
}

.mentions {
	text-decoration: none;
	font-weight: 300;
	letter-spacing: 1px;
	position: relative;
	padding: 3px 0;
}

.mentions::after {
	content: "";
	width: 100%;
	height: 2px;
	background-color: #EB8238;
	position: absolute;
	right: 0;
	transform: scaleX(0);
	transition: transform 0.5s;
	bottom: 0;
	transform-origin: left;
}

.mentions:hover::after {
	transform: scaleX(1);
}