@charset "utf-8";
/* CSS Document */

* {
		box-sizing: border-box;
}
		
html {
	scroll-behavior: smooth;
	background-color: #FFBC14;
}
		
body {
	margin: 0;
	font-family: system-ui;
}
		
nav {
	background: rgba(255, 188, 20, .9);
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	
	position:fixed;
	
	top: 0px;
	z-index: 99;
	opacity: 0;
	transition: all 500ms ease-in-out;
	pointer-events: none;
}

nav.open {
	
	opacity: 1;
	pointer-events: auto;
}
	
header {
	width: 100%;
	height: 100vh;
}

header h2 {
	font-size: 25px;
	text-align: center;
	color: white;
	text-shadow: 2px 2px 10px black;
	font-family: "Silkscreen", serif;
}


header img {
	object-fit: cover;
	width: 100%;
	height: 80vh;
	position: absolute;
	inset: 0;
	z-index: -1;
	
}

h1 {
	font-size: 80px;
	text-align: center;
	text-transform: uppercase;
	color: white;
	text-shadow: 2px 2px 10px black;
	padding-top: 5vh;
}	
		nav ul {
			list-style: none;
			margin: 0;
			text-align: center;
			
			
		}
		
		nav ul a {
			
			text-decoration: none;
			margin: 10px 10px;
			
			height: 40px;
			box-shadow: 0px 5px 0px black;
			font-family: "Montserrat", serif;
			font-size: 10vh;
			line-height: 25vh;
			padding: 0 25px;
			color: white;
			
			text-shadow: 2px 2px 2px  black;
			
			top: -50px;
			
		}
		
		nav a:hover, nav a:focus {
			color: black;
			text-shadow: 2px 2px white;
		}

#hamburger {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 100;
	background: url("images/hamburgers.png");
	background-size: 87px 55px;
	background-repeat: no-repeat;
	width: 77px;
	height: 65px;
	border: solid 10px transparent;
	box-sizing: border-box;
	cursor: pointer;
	text-indent: -9999px;
}
		
		section {
			min-height: 100vh;
			background-size: cover;
			padding: 8vw;
			padding-top: calc(8vw + 60px);
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			
			scroll-snap-align: start;
		}
		
		section p {
			background: rgba(255, 255, 255, 0.7);
			padding: 4vw;
			border-radius: 20px;
		}
		
section h2 {
	font-family: "Silkscreen", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 60px;
	letter-spacing: -7px;
	margin-bottom: -10px;
	padding-bottom: 20px;
	transition: all 1s ease-in-out;
		}

section h2.in-view {
	font-size: 90px;
}

section p {
	font-family: "Montserrat", serif;
  	font-optical-sizing: auto;
  	font-weight: 500;
  	font-style: normal;
}

#section1 h2 {
	text-shadow: 1px 1px 5px red;
	
}

#section2 h2 {
	text-shadow: 1px 1px 5px green;
}

#section3 h2 {
	text-shadow: 1px 1px 5px #0000ff;
}

#section4 h2 {
	text-shadow: 1px 1px 5px #ff00ff;
}

@keyframes spinblock {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.red  {
	animation: spinblock 2s infinite;
}

.green {
	animation: spinblock 2s infinite;
}

.blue {
	animation: spinblock 2s infinite;
}

.pink {
	animation: spinblock 2s infinite;
}


	
