* {
	box-sizing: border-box;
}

@font-face {
	font-family: "mark light";
	src: url("../font/Mark-Light.ttf");
	font-family: "mark bold";
	src: url("../font/Mark-Bold.ttf");
}

h2,
h3 {
	text-align: center;
	font-family: 'mark bold';
	font-size: 32px;
	color: white;
}

p {
	font-family: 'mark light';
	text-align: justify;
	color: white;
}

.entete {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 4em;
}

.entete .logo {
	width: 100%;
	max-width: 200px;
	height: auto;
	margin-left: 1em;
	z-index: 1000;
}

.entete .logo img {
	width: 100%;
	height: auto;
}

.entete .menu-principal {
	margin-right: 1em;
	width: 80%;
	max-width: 800px;
	z-index: 1000;
}

.entete .menu-principal ul {
	list-style-type: none;
	display: flex;
	justify-content: center;
	padding: 0;
}

.entete .menu-principal li {
	text-align: center;
	margin: 0.25em;
	padding: 0.25em;
	flex-grow: 1;
}

.entete .menu-principal a {
	color: white;
	font-family: 'mark bold';
	text-decoration: none;
	font-size: 35px;
}

.entete .mobile-trigger {
	display: none;
}

.entete .mobile-trigger .menu-mobile {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: black;
	list-style-type: none;
}

.entete .mobile-trigger .menu-mobile ul {
	list-style-type: none;
	position: absolute;
	top: 80px;
	right: 70px;
	text-align: end;
	line-height: 60px;
}

body > header > div > nav > a {
	position: absolute;
	top: 15px;
	right: 20px;
}

.entete .mobile-trigger .menu-mobile a {
	color: white;
	text-decoration: none;
	font-family: 'mark bold';
	font-size: 35px;
}
.entete .video {
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
}
/* contenu principal*/

.contenu {
	background-color: #011126;
}

.contenu #accueil {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 2em 1em 2em 1em;
	z-index: 1000;
	margin-top: 900px;
}

.contenu #accueil article {
	width: 100%;
	padding: 1em;
	max-width: 55%;
}

.contenu #accueil .video {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.contenu #accueil .video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.contenu .propos {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 2em;
}

.contenu .propos article {
	width: 100%;
	padding: 1em;
	text-align: justify;
	max-width: 55%;
}

.contenu .galerie {
	justify-content: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.contenu .galerie h2 {
	text-align: center;
}
.contenu .galerie div.img {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.contenu .galerie article {
	margin: auto;
	display: flex;
}

.contenu .galerie .details {
	max-width: 55%;
	padding: 60px;
}
.contenu .galerie img {
	max-width: 400px;
}

.contenu .galerie .details p {
	text-align: center;
}

/*footer*/

.pied-de-page {
	background-color: black;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.pied-de-page .image {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 100%;
	columns: 3;
}

.pied-de-page .image .logo-1 {
	padding: 1em;
}

.pied-de-page .image .logo-2 {
	padding: 1em;
}

.pied-de-page .image .social {
	width: 33%;
	box-sizing: border-box;
}

.pied-de-page .image .social h3 {
	text-align: center;
}

.pied-de-page .image .social ul {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	min-width: 100px;
	list-style-type: none;
	justify-content: center;
	padding: 0;
}

.pied-de-page .image .social li {
	margin: 0.3em;
}

.pied-de-page .image .social img {
	width: 100%;
	max-width: 64px;
	height: auto;
}

.pied-de-page .copyright {
	color: white;
	font-family: 'mark bold';
	margin: 1em;
}

/* Page PLUS D INFOS */

header.infos, header.jeu {
	background-color: black;
}

main {
	overflow: hidden;
}

.eau {
	background: url("../images/water.jpg") fixed;
	width: 100vw;
	height: 90vh;
	text-align: center;
	position: relative;
}

.foret {
	background: url("../images/forest.jpg") fixed;
	width: 100vw;
	height: 90vh;
	text-align: center;
	position: relative;
}

.elec {
	background: url("../images/lumiere.jpg") fixed;
	width: 100vw;
	height: 90vh;
	text-align: center;
	position: relative;
}

.frigo {
	background: url("../images/fridge.jpg") fixed;
	width: 100vw;
	height: 90vh;
	text-align: center;
	position: relative;
}

.frigo p,
.elec p,
.eau p,
.foret p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.frigo h2,
.elec h2,
.eau h2,
.foret h2 {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#canvas {
	max-width: 80%;
    margin: 0 10%;
}
