/* BASE */

a {
	text-decoration: none;
}


* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	width: 100%;
	background-color: black;
	font-family: "EverettRegular";
	margin-bottom: 30px;
	color: white;
}

h1,
h2,
h3,
h4,
h5 {
	margin: 0;
	font-weight: 100;
	font-family: "EverettMedium";
}

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

/* POLICES */ 

@font-face {
font-family: "EverettMedium";
src: url("../fonts/Everett-Medium-web.woff");
}

@font-face {
font-family: "EverettRegular";
src: url("../fonts/Everett-Regular-web.woff");
}

@font-face {
font-family: "EverettLight";
src: url("../fonts/Everett-Light-web.woff");
}


/* SHAPES */


.shapes-pool {
  display: none;
}

.shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

.shapes .shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shapes:nth-child(1) {
	mix-blend-mode: overlay;
}

.shapes .shape .shape-rect {
  animation-name: animation-test;
  animation-duration: 100s;
  animation-fill-mode: forwards;
}



@keyframes animation-test {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}


/* CONTENT */

.content-pool {
	display: none;
}

.timeline {
	position: relative;
	z-index: 1;
	width: 90%;
	padding: 5px;
	margin: 0 auto;
}


h1 { 
	font-size: 150px; 
	text-align: center;
	margin-bottom: 40px;
}

h2 {
	font-size: 50px; 
	text-align: center;
	margin-bottom: 40px;
	text-transform: uppercase;
}

h3 {
	font-size: 20px; 
	text-align: center;
	font-family: "EverettLight";
}

h4 {
	font-size: 100px; 
	text-align: center;
	margin-top: 30px;
}

p {
	font-size: 27px;
	padding: 20px;
	width: 90%;
	margin-left: auto;
 	margin-right: auto;
 	display: block;
  	margin-top: 0;
}


.welcome  {
	width: 87%;
	height: 80%;
	padding-top: 100px;
	background-image: linear-gradient(to bottom, rgba(255,0,0,0), rgba(255,255,255,1));
	border-radius: 20px;
	font-size: 40px;
	margin: 40px auto;
	overflow:scroll;
	position: relative;
	z-index: 90000000000;
}

.welcome p {
	text-align: center;
	padding: 0;
}



.division {
	height: 5px;
	width: 100%;
	background-color: white;
}




.annotation {
	font-size: 15px;
	padding: 20px;
	text-align: center;

}


.content {
	width: 100%;
	height: 80%;
	padding: 10px;
	background-image: linear-gradient(to bottom, rgba(255,0,0,0), rgba(255,255,255,1));
	border-radius: 20px;
	font-size: 40px;
	margin: 10px auto;
	overflow:scroll;
	animation-name: bounceIn;
  	animation-duration: 1000ms;
  	animation-timing-function: linear;
  	animation-fill-mode: forwards;
}

img {
	mix-blend-mode: screen;
	opacity: 0.8;
	border-radius: 20px;
	width: 90%;
	margin-left: auto;
 	margin-right: auto;
 	display: block;
 	margin-bottom: 40px;
}

.changeMode {
	border: solid 5px white;
	width: 90%;
	border-radius: 20px;
	margin-left: auto;
    margin-right: auto;
    display: block;
}

.buttonHome {
	border: solid 5px white;
	width: 90%;
	border-radius: 20px;
	margin-left: auto;
    margin-right: auto;
    display: block;
    font-size: 80px;
    font-weight: 100;
    font-family: "EverettRegular";
}



.menu {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;

}

.chooseMenu {
	width: 100%;
	position: absolute;
  	left: 50%;
  	top: 40%;
  	transform: translate(-50%, -50%);
}

.buttonMenu {
	margin-top: 50px;
}

.buttonMenu p {
	font-size: 50px;
}

.chooseMenu .buttonMenu {
	margin-top: 200px;
	text-align: center;
}



.menu__item {
	padding: 20px;
	background-image: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 60%);
	border-radius: 20px;
	margin: 10px 8px;
	font-size: 40px;
	font-family: "EverettRegular";
	font-weight: 100;
}

.menu__item_different {
	padding: 20px;
	background: linear-gradient(to right, rgba(0, 0, 0 ,0), #ffffff);
	animation: gradient 5s ease infinite;
	background-size: 300% 300%;
	border-radius: 20px;
	margin: 10px 8px;
	font-size: 40px;
	letter-spacing: 5;
	font-family: "EverettRegular";
	font-weight: 100;
}

.logo {
	z-index: 50000000000;
	pointer-events: none;
	margin-top: 80px;
}

#background-images img,
#background-images video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    opacity: 0.8;
 }

#background-images {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} 



@-webkit-keyframes fade-in{0%{opacity:0;} 100%{opacity:1;}}
@-moz-keyframes fade-in{0%{opacity:0} 100%{opacity:1}}
@-o-keyframes fade-in{0%{opacity:0} 100%{opacity:1}}
@keyframes fade-in{0%{opacity:0} 100%{opacity:1}}




.gray {
  filter: grayscale();
}


.h2_lastline {
	margin-bottom: 15px;
}

@keyframes bounceIn{
  0%{
    opacity: 0;
    transform: scale(0.8) translate3d(0,0,0);
  }
  100%{
    opacity: 1;
    transform: scale(1) translate3d(0,0,0);
  }
}


.btn {
  background: linear-gradient(to right, rgba(0, 0, 0, 0), #ffffff);
  animation: gradient 10s ease infinite;
  background-size: 300% 300%;
  margin-top: 100px;
  border: none;
  font-family: "EverettRegular";
}

@keyframes gradient { 
  0% { background-position: 0% 50% }
  50% { background-position: 100% 50% }
  100% { background-position: 0% 50% }
}


.infos {

  font-size: 27px;
  margin: 0 auto;
}



.description {
  text-align: center;
  margin: 700px 10px 0 10px;
  position: absolute;
  z-index: 40000000000;
  width: 100%;
  padding: 10pxlogo 80px;
  border-top: 6px solid white;
  border-bottom: 6px solid white;

}

.circle {
	height: 860px;
	width: 860px;
	position: absolute;
	border: 6px solid white;
	border-radius: 860px;
	left: 50%;
	top: 50%;
    transform: translate(-50%, 0);
    z-index: 50000000000;
	pointer-events: none;
	transform: translate(-50%, -60%);
margin-top: 0px;
}

.description p {
	font-size: 47px;
}

.description h2 {
	margin-bottom: 0;
}




/* RESPONSIVE */

@media screen and (min-width: 500px) {
  a {
    font-size: 90px;
  }

.chooseMenu .buttonMenu {
	margin-top: 0px;
}




.chooseMenu {
	margin-top: 100px;
}


@media screen and (min-width: 1000px) {
  a {
    font-size: 80px;
  }

  .circle {
  	top: 15%;
  }

.chooseMenu .buttonMenu {
	padding: 0 400px;
	margin-top: 0px;
}

.buttonMenu {
	margin-top: -100px;
}

.chooseMenu {
	margin-top: 250px;
}

.btn {
	margin-top: 0px;
}

.logo {
	width: 70%;
}

.circle {
transform: translate(-50%, -20%);
margin-top: 0px;
}

h2 {
font-size: 30px 
}

.description {
	border-top: none;
	border-bottom: none;
	margin: -270px 0 0 0;
}

}



