*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	font-family: sans-serif;
	scroll-behavior: smooth;
}
header{
	user-select: none;
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
}
.parallax-front, .parallax-back{
	user-select: none;
	position: absolute;
	width: auto;
	height: auto;
	top: 25%;
	left: 0;
	object-fit: cover;
	display: flex;
	justify-content: center;
}
.parallax-front{
	z-index: 1;
}
.parallax-back{
	z-index: 0;
}
.buttons{
}
.play{
	font-family: 'Luckiest Guy', cursive;
	color: #009FFF;
	font-size: 48px;
	position: absolute;
	top: 86%;
	right: 50px;
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	z-index: 2;
}
.play:hover{
  animation: pulse 1s infinite;
  transition: .3s;
  background-color: black;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(.9);
  }
    100% {
    transform: scale(1);
  }
}
.links{
	display: flex;
}
.links a{
	color: white;
	margin-left: -15px;
	margin-top: -75px;
	font-size: 15px;
	font-weight: 600;
	padding: 25px;
	border-bottom: 20px solid transparent;
	z-index: 2;
}
.links a:hover{
	transform: translateY(5px);
}
#menu-icon{
	color: white;
	font-size: 35px;
	z-index: 10001;
	cursor: pointer;
	display: none;
}
.pages{
	position: fixed; 
  	top: 190px; 
  	left: 40px; 
  	z-index: 2;
}
.pages a{
	font-family: 'Passion One', cursive;
	display: table;
	margin: 15px 20px;
	font-size: 30px;
	font-weight: 600;
	color: white;
	transition: .2s;
}
.pages a:after{
	content: '';
	width: 0;
	height: 4px;
	background-color: white;
	margin: auto;
	display: block;
}
.pages a:hover::after{
	width: 100%;
	transition: width .2s linear;
}
@media (max.width: 1535px){
	header{
		padding: 15px 3%;
	}
	.pages{
		padding: 0 3%;
	}
}
/* ABOUT PAGE */
.aboutpage{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 25vh;
}
.aboutpage .aboutcontent img{
	user-select: none;
	height: auto;
	width: 400px;
	max-width: 100%;
}
.abouttext{
	width: 550px;
	max-width: 100%;
	padding: 0 10px;
}
.aboutcontent{
	width: 1280px;
	max-width: 95%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
}
.abouttext h1{
	font-weight: normal;
	font-family: 'Luckiest Guy', cursive;
	font-size: 64px;
	text-align: center;
	color: white;
	margin-bottom: 20px;
}
.abouttext p{
	font-weight: normal;
	font-family: 'Passion One', cursive;
	font-size: 24px;
	text-align: center;
	color: white;
	background-color: rgba(0, 0, 0, .5);
	margin-bottom: 1rem;
	padding: 1rem;
	border-radius: 20px;
}
.abouttext a{
	font-weight: normal;
	font-family: 'Passion One', cursive;
	font-size: 24px;
	text-align: center;
	color: white;
}
/* STORY PAGE */
.story{
	height: 100vh;
	overflow-y: scroll;
	scroll-snap-type: y mandatory;
}
.story > section{
	height: 100vh;
	display: block;
	justify-content: center;
	align-items: center;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}
.story > section:nth-child(1){
	background: linear-gradient(180deg, rgba(255,98,0,1) 70%, rgba(133,133,133,1) 100%);
}
.story > section:nth-child(2){
	background: linear-gradient(180deg, rgba(133,133,133,1) 0%, rgba(0,159,255,1) 30%);
}
.story > section:nth-child(3){
	background: linear-gradient(180deg, rgba(0,159,255,1) 15%, rgba(255,98,0,1) 85%);
}
.story h1{
	font-weight: normal;
	font-family: 'Luckiest Guy', cursive;
	font-size: 48px;
	text-align: center;
	color: white;
	margin-bottom: 20px;
	padding-top: 20%;
}
.story p{
	font-weight: normal;
	font-family: 'Passion One', cursive;
	font-size: 24px;
	text-align: center;
	color: white;
	background-color: rgba(0, 0, 0, .5);
	margin-bottom: 1rem;
	padding: 1rem;
	border-radius: 20px;
	width: 50%;
	margin-left: 25%;
}
.story a{
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-family: 'Luckiest Guy', cursive;
	font-weight: normal;
	font-size: 24px;
	padding-top: 20px;
	margin-left: 45vw;
	width: 10%;
}
.story a:hover{
	color: black;
}
.story img{
	user-select: none;
	width: 15%;
	display: flex;
	margin-top: -50vh;
	margin-left: 75vw;
}
.story .img2{
	margin-top: 18vh;
	margin-left: 15vw;
}
/* ROADMAP PAGE */
.woodbanner{
	background-image: url('Images/Table.png');
	height: 100vh;
	background-repeat: no-repeat;
	width: 100%;
	background-size: cover;
	background-position: center;
}
.scrollbutton{
	display: flex;
	position: absolute;
	margin-top: -15vh;
	margin-left: 85vw;
	z-index: 5;
	background: black;
	border-radius: 50%;
	padding-left: 10px;
	padding-right: 10px;
}
.scrollbutton a{
	font-family: 'Luckiest Guy', cursive;
	font-weight: normal;
	color: white;
	font-size: 48px;
	margin-top: 8px;
}
.scrollbutton a:hover{
	color: darkorange;
}
.map{
	user-select: none;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	display: flex;
}
.separator{
	display: block;
	position: absolute;
	width: auto;
	height: 0;
	border-right: 99vw solid transparent;
	border-bottom: 10vw solid black;
	margin-top: -10vw;
}
.activations{
	display: block;
	background: black;
	color: white;
}
.activations h1{
	font-weight: normal;
	font-family: 'Luckiest Guy', cursive;
	font-size: 48px;
	text-align: center;
}
.activations h2{
	font-weight: normal;
	font-family: 'Luckiest Guy', cursive;
	color: darkorange;
	text-align: center;
	font-size: 48px;
}
.activations p{
	font-weight: normal;
	font-family: 'Passion One', cursive;
	font-size: 24px;
	text-align: center;
}
/* FAQ PAGE */
.faqcontent{
	width: 40%;
	display: block;
	margin-top: 10%;
	margin-left: 30%;
}
.faqcontent h1{
	font-weight: normal;
	font-family: 'Luckiest Guy', cursive;
	font-size: 64px;
	color: white;
	text-align: center;
	margin-bottom: 20px;
}
.faqcontent a{
	font-weight: normal;
	font-family: 'Luckiest Guy', cursive;
	font-size: 32px;
	color: white;
}
.faqcontent .igbutton{
	font-family: 'Passion One', cursive;
	font-size: 24px;
}
.faq-item{
	background-color: rgba(0, 0, 0, .5);
	margin-bottom: 1rem;
	padding: 1rem;
	border-radius: 20px;
}
.faq-link{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.faq-link .ri-arrow-up-s-line{
	display: none;
}
.faq-item:target .faq-link .ri-arrow-down-s-line{
	display: none;
}
.faq-litem:target .faq-link .ri-arrow-up-s-line{
	display: block;
}
.answer{
	font-family: 'Passion One', cursive;
	color: white;
	font-size: 24px;
	max-height: 0;
	overflow: hidden;
	position: relative;
	
}
.answer::before{
	content: "";
	position: absolute;
}
.faq-item:target .answer{
	max-height: 20rem;
	transition: .8s;
}
/*MEDIA*/
@media (max-width: 990px){
	#menu-icon{
		display: block;
		margin-right: 50px;
		font-size: 50px;
	}
	.parallax-front, .parallax-back{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		position: fixed;
		display: flex;
		width: 1200px;
	}
	.play{
		display: none;
	}
	.links{
		position: absolute;
		margin-top: 1000%;
		left: -114px;
		display: flex;
		align-items: center;
		transform: translateY(-50%);
		padding-left: 50%;
		transition: .2s;
	}
	.pages{
		position: fixed;
		flex-direction: column;
		margin-top: 200%;
		right: 0;
		left: 0;
		display: flex;
		background: black;
		border-style: solid;
		border-color: white;
		border-radius: 50px;
		align-items: center;
		padding: 50px;
		height: 100%;
		transition: .2s;
	}
	.pages.open{
		margin-top: 20px;
		top: 180px;
	}
	.links.open{
		margin-top: 175vh;
	}
	.map{
		position: absolute;
		width: 100%;
		height: auto;
	}
	.scrollbutton{
		margin-left: 80vw;
	}
	.aboutpage{
		width: 100%;
		height: auto;
		padding: 70px 0px;
	}
	.story h1{
		padding-top: 20vh;
	}
	.story p{
		margin-left: 0;
		width: 100vw;
	}
}