body {
	background-color: rgb(30, 30, 30);
	font-family: "sfpro";
	margin: 0;
	padding: 0;
	overflow: hidden; /*forces user to watch animation*/
}

#load-cover {
	position: fixed; /* Fixes it to the viewport */
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: block;
	background-color: rgba(
		0,
		0,
		0,
		0.5
	); /* Optional, to give it a semi-transparent background */
	z-index: 9999; /* Makes sure it's on top of other elements */
	opacity: 1;
	transition: opacity 1s ease-out; /* Smooth fade-out transition */
}

#load-cover button {
	position: relative;
	top: 70%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.image-container {
	position: relative; /* This makes the container the reference for absolute positioning */
	display: flex;
	justify-content: center; /* Horizontally center the images */
	align-items: center; /* Vertically center the images */
	filter: invert(); /* Can be removed for testing visibility */
	width: 100%; /* Make sure the image container takes the full width of its parent */
	height: 100%; /* Same for height */
}

#load-cover .image-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 200px;
	width: 200px;
}

.image-container img {
	position: absolute; /* Stack images on top of each other */
}

.middle {
	z-index: 1; /* Middle image will be below the top image */
}

.ring {
	z-index: 2; /* Ring image will be on top */
	animation: rotate 15s linear infinite;
	transform-origin: center;
	transition: rotate 250ms ease;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

#hero {
	position: absolute;
	top: 0;
	height: 100vh;
	width: 100vw;
	display: block;
	text-align: center;
	background-image: url("bg.JPG");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0% 10%;
	box-sizing: border-box;
}

#hero-grad {
	background: rgb(2, 0, 36);
	background: linear-gradient(
		0deg,
		rgba(20, 20, 20, 1) 0%,
		rgba(0, 0, 0, 0) 100%
	);
}

.content {
	display: block;
	height: 100vh;
	width: 100vw;
	position: absolute;
	top: 0;
	left: 0;
	backdrop-filter: blur(20px);
	color: white;
}
#hero .content .in {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	filter: blur(20px);
	padding: 10%;
	box-sizing: border-box;
}

.monkey {
	position: absolute;
	width: 50px; /* Adjust based on the size of your PNG */
	height: 50px;
	animation: jump 3s ease-in-out infinite;
}

@keyframes jump {
	0% {
		transform: translateX(0) translateY(0); /* Start position */
	}
	25% {
		transform: translateX(100px) translateY(-100px); /* Move up and to the right */
	}
	50% {
		transform: translateX(200px) translateY(0); /* Go back down and to the right */
	}
	75% {
		transform: translateX(300px) translateY(-100px); /* Move up again */
	}
	100% {
		transform: translateX(400px) translateY(0); /* End at the bottom */
	}
}

#who {
	display: block;
	height: 100vh;
	width: 100vw;
	top: 100vh;
	position: absolute;
	background-image: url("who.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

#who-grad {
	background: rgb(2, 0, 36);
	background: linear-gradient(
		180deg,
		rgba(20, 20, 20, 1) 0%,
		rgba(0, 0, 0, 0) 100%
	);
}

.center-horiz {
	display: flex;
	justify-content: center;
	text-align: center;
}
.center-vert {
	display: flex;
	align-items: center;
}
.center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.left,
.right {
	height: 100vh;
	width: 50vw;
	padding: 10%;
	box-sizing: border-box;
}
.left {
	left: 0;
	float: left;
}
.right {
	right: 0;
	float: right;
	padding-left: 4%;
	padding-right: 10%;
}

@media screen and (max-width: 900px) {
	.left,
	.right {
		width: 100vw;
		padding-top: 0;
		padding-bottom: 0;
	}
	.left {
		height: 40vh;
	}
	.right {
		height: 60vh;
	}
}

button {
	background: linear-gradient(
		209deg,
		#ea6044 39%,
		#dc5083 50%,
		#9a6df7 67%,
		#3f8def 81%
	);
	background-size: auto;
	background-clip: border-box;
	background-size: 200%;
	animation: backgroundMove 10s ease-in-out infinite;
	padding: 10px;
	color: white;
	border: 1px solid black;
	border-radius: 5px;
	font-family: "sfpro";
	font-size: medium;
	transition: scale 250ms ease;
	cursor: pointer;
}
button:hover {
	scale: 1.1;
}
button:active {
	scale: 0.9;
}
@keyframes backgroundMove {
	50% {
		background-position: 100% 100%;
	}
}

#logo-top-left {
	height: 4rem;
	width: 4rem;
	display: flex;
	align-items: center;
	z-index: 100;
}

#navbar {
	position: fixed;
	top: 5px;
	left: 50%;
	transform: translateX(-50%);

	width: calc(100vw - 10px);
	max-width: 500px;
	height: 6rem;

	display: flex;
	align-items: center;

	z-index: 100;
	padding: 0 1.5rem;
	box-sizing: border-box;
	backdrop-filter: blur(15px);

	background-color: rgba(20, 20, 20, 0.8);
	border-radius: 20px;
	border: 1px solid white;

	transition: all 250ms ease;

	color: white;
}

#nav-links {
	display: flex;
	gap: 1rem;
	margin-left: auto;
	margin-right: auto;
}

#nav-links a {
	color: white;
	text-decoration: none;
	font-family: "sfpro";
	font-size: medium;
	transition: color 250ms ease;
	cursor: pointer;
}

#nav-links a:hover {
	color: #99e4ac;
}

@media screen and (max-width: 500px) {
	#navbar {
		left: calc(50%);
		width: calc(100vw - 20px);
		transform: translateX(-50%);
		display: block;
		text-align: center;
	}
	#nav-links {
		display: none;
	}
	#logo-top-left {
		display: block;
		position: relative;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	#navbar.mobileMenuOpen > #logo-top-left {
		transform: translate(-50%, -20%);
	}
	.left {
		height: 30vh;
	}
	.right {
		height: 70vh;
	}
}
@media screen and (max-width: 400px) {
	.left {
		height: 25vh;
	}
	.right {
		height: 75vh;
	}
}
.divider {
	display: block;
	margin-top: auto;
	height: 1rem;
	width: 2px;
	background-color: grey;
}
#navbar.mobileMenuOpen {
	height: auto;
	padding: 1rem 1.5rem;
}
#navbar.mobileMenuOpen .divider,
#navbar.mobileMenuClosing .divider {
	width: 50%;
	height: 2px;
	display: block;
	margin: 5px;
	margin-left: auto;
	margin-right: auto;
}
