/* BASE */

* {
	box-sizing: border-box;
}

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

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

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

/* 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;
  right: 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%;
  }
}

.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: 30px; 
	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(0,0,0,0), rgba(0,0,0,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: black;
}

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

}

/* CONTENT */

.content-pool {
	display: none;
}

.content {
	width: 100%;
	height: 80%;
	padding: 10px;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,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;
}

.content-type-7 .menu__item {
	margin: 0 50px;
	font-family: "EverettMedium";

}

.content-type-7 {
	text-align: center;
}

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 {
	width: 90%;
	border-radius: 20px;
	margin-left: auto;
    margin-right: auto;
    display: block;
    border: 3px solid black;
}

.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: 45%;
  	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;
	border-radius: 20px;
	margin: 10px 8px;
	font-size: 40px;
	border: 3px black solid;
	font-family: "EverettRegular";
	font-weight: 100;
}

.menu__item_different {
	padding: 20px;
	background: linear-gradient(to right, rgba(0, 0, 0 ,0), #000000);
	animation: gradient 5s ease infinite;
	background-size: 300% 300%;
	border-radius: 20px;
	border:  3px solid;
	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 {
  	margin-top: 100px;
	border: 3px solid black;
  	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;
}

.infos .changeMode{
	border: 3px solid black;
}


.description {
  text-align: center;
  margin: 1200px 10px 0 10px;
  position: absolute;
  z-index: 40000000000;
  width: 100%;
  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%;
	margin-top: 20px;
    transform: translate(-50%, 0);
    z-index: 50000000000;
	pointer-events: none;
}

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

.description h2 {
	margin-bottom: 0;
}

/* RESPONSIVE 2 */

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

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

.shapes {
  top: -800px;
}

img {
	width: 60%;
}


.chooseMenu {
	margin-top: 100px;
}

.logo {
	width: 40%;
}

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



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


.welcome {
	padding-top: 0;
}

}

/* RESPONSIVE 1 */

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

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

img {
	width: 60%;
}

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

.chooseMenu {
	margin-top: 250px;
}

.btn {
	margin-top: 0px;
}

.shapes {
	top: -500px;
}

.menu__item,
.menu__item_different {
	padding: 10px;
	font-size: 30px;
}

h1 {
	font-size: 130px;
}

.welcome {
	height: 85%;
}

.logo {
	width: 70%;
}

.welcome {
	padding-top: 0;
}

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

h3 {
	font-size: 40px;
}

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

}



