body {
	width: 100wh;
	height: 90vh;
	color: #fff;
	background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

h1,
h2 {
	font-family: 'Open Sans';
	font-weight: 300;
	text-align: center;
	position: absolute;
	top: 30%;
	font-size: 5em;
	right: 0;
	left: 0;
}

h2 {
	font-size: 2em;
	top: 50%;
}

.equipe {
	position: relative;
    top: 85%;
    text-align: center;
}

.equipe div {
    display: inline-block;
    font-size: 1.2em;
	font-family: 'Open Sans';
}

.equipe .titre {
    padding: 2em;
    font-weight: bold;
}

.equipe .membre {
	width: 180px;
    border: 2px solid #fff;
    padding: 10px;
    border-radius: 5px;
}

.equipe .membre:hover {
    background-color: rgba(255, 255, 255, .2);
}

.equipe .membre a {
    color: #fff;
    text-decoration: none;
}

.equipe .membre .gauche {
	text-align: right;
}

.equipe .membre .droite {
	text-align: left;
}

.mentions-legales {
	position: relative;
    top: 90%;
    text-align: right;
    margin-right: 20px;
}

.mentions-legales a {
	font-family: 'Open Sans';
	color:#fff;
	text-decoration: none;
}

.mentions-legales a:hover {
	font-weight: bold;
}