* {
	box-sizing: border-box;
}
body {
	display: block;
	margin: 0;
	background-color: #434343;
}

a {
	color: black;
	text-decoration: none;
}

/*--------------------------*/
/* ----      MENU       ----*/
/*--------------------------*/
.menu {
	position: relative;
	display: inline-block;
}
/*     the button part     */
.menu-button {
	display: inline-block;
	cursor: pointer;
	padding: 5px 10px;
	margin: 4px 2px;
	border: 3px solid #303030;
	border-radius: 30%;
	opacity: 0.6;
	transition: 0.3s;
}
.bar1,
.bar2,
.bar3 {
	width: 30px;
	height: 5px;
	background-color: #d9d9d9a2;
	margin: 6px 0;
	transition: 0.4s;
}
/*--------------------------*/
.navlinklist {
	display: none;
	position: absolute;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.navlinklist a {
	color: #d9d9d9;
	padding: 12px 16px;
	font-family: Quicksand;
	text-decoration: none;
	display: block;
}
/*      the effects        */
.menu-button:hover {
	background-color: #d9d9d96c;
	border: 3px solid #30303073;
}
.change .bar1 {
	transform: translate(0, 11px) rotate(-45deg);
}
.change .bar2 {
	opacity: 0;
}
.change .bar3 {
	transform: translate(0, -11px) rotate(45deg);
}
.navlinklist a:hover {
	color: #303030;
	background-color: #ff12a0;
}

/*--------------------------*/
/* ----    GROTITRE     ----*/
/*--------------------------*/
.grotitre {
	color: #d9d9d9;
	font-family: Quicksand;
	font-size: 36pt;
	display: flex;
	justify-content: center;
}

/*-------------------------*/
/*----  MAIN ELEMENTS  ----*/
/*-------------------------*/
/* ↓ "main" contains the picture and the buttons */
main {
	height: 90vh;
}
/* ↓ The picture ↓*/
#landingPicture {
	min-height: 30vh;
	max-height: 700px;
	background-image: url(../images/iDontOwnThisPicture-itsForPlaceholderOnly.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
}
/* ↓ Contains the buttons ↓ */
#landingContainer {
	display: flex;
	height: 200px;
	justify-content: space-around;
	align-items: center;
}
/* ↓ The buttons ↓ */
a.landingButton {
	color: #d9d9d9;
	font-family: Quicksand;
	font-size: 16pt;
	background-color: #30303096;
	border-radius: 20px;
	max-width: 290px;
	padding: 16pt;
	flex-grow: 1;
	text-align: center;
	transition: transform 0.2s;
}
a.landingButton:hover {
	transform: scale(1.2);
	background-color: #ff12a0;
}
#div-cgu,
#temp-text {
	display: flex;
	color: #d9d9d9;
	font-family: Quicksand;
	padding: 150px;
	justify-content: center;
}
/*-------------------------*/
/*    Footer navigation    */
/*-------------------------*/
footer {
	display: flex;
	background-color: #303030;
	height: 65px;
	justify-content: center;
}
.navFooter {
	font-family: Quicksand;
	font-size: 12pt;
	text-decoration: none;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	width: 80%;
}
.navFooter > a:visited {
	color: inherit;
}
.navFooter > a:hover {
	color: #ff12a0;
}
/*  the SVG logo links */

svg {
	margin: 0 5px;
	fill: black;
	transition: transform 0.2s;
}
svg:hover {
	transform: scale(1.2);
	fill: #ff12a0;
}
svg:visited {
	fill: #fcc931;
}

/*  JS add ins   */
.show {
	display: block;
}

/*-----------contact------------*/
#section-contact {
	display: flex;
	padding: 10% 0%;
	justify-content: space-around;
}
#illu-contact {
	width: 600px;
	background-color: #353535;
}
fieldset {
	display: flex;
	flex-direction: column;
	border-style: none;
}
fieldset > input {
	color: #d9d9d9;
	font-family: Quicksand;
	font-size: 12pt;
	background-color: #30303096;
	border-style: none;
	border-radius: 20px;
	max-width: 290px;
	padding: 13pt;
	margin: 5px;
	flex-grow: 1;
	text-align: center;
}
#commentaireContact {
	flex-grow: 2;
}
#form-button {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}
#form-button > button {
	color: #d9d9d9;
	background-color: #434343;
	padding: 5px 10px;
	border-radius: 10px;
	margin: 0px 15px;
}
