@charset "UTF-8";

html{
	scroll-behavior: smooth;
	scroll-padding-top: 5.5vw;
}

/*text and headings*/
.blob {
	position: absolute;
	z-index: -1;
	bottom: 0vw;
	left: 25%;
	width: 45vw;
	min-width: 300px;
	height: 15vw;
	background: radial-gradient(circle at 30% 30%, #FFE182, #FFE182);
	border-radius: 50%;
	box-shadow: 0 0 60px #FFE182;
	animation: floatBlob 8s ease-in-out infinite alternate;
	filter: blur(1px); }

		@keyframes floatBlob {
			0% {
				transform: translate(0, 0) scale(1);
				border-radius: 50% 50% 50% 50%;
			}
	
			25% {
				transform: translate(40px, -30px) scale(1.05);
				border-radius: 60% 40% 50% 60%;
			}
	
			50% {
				transform: translate(-20px, 40px) scale(1.1);
				border-radius: 50% 60% 40% 60%;
			}
	
			75% {
				transform: translate(30px, -20px) scale(0.95);
				border-radius: 60% 50% 60% 40%;
			}
	
			100% {
				transform: translate(-40px, 20px) scale(1);
				border-radius: 50% 50% 50% 50%;
			}  }

body {
	overflow-x: hidden;
	background-color: #FBFDFF;
	margin:0;
}

p {
	color: #727072;
	font-size: clamp(15px,2vw, 23px);
	font-family: 'Roboto Condensed', sans-serif;
	text-align: left;
	padding: 2%;
}

h1 {
	color: #727072;
	text-align: center;
	font-size: clamp(60px, 10vw, 200px);
	font-family: 'Roboto Condensed', sans-serif;
}

h3 {
	color: #727072;
	font-size: clamp(25px, 4vw, 40px);
	font-family: 'Roboto Condensed', sans-serif;
	margin-left: 13%;
}

.left-right {
	display: flex;
	align-items: center;
	padding: 2%;
	width: 84%;
	box-sizing: border-box;
	margin-right: 8%;
	margin-left: 8%;
}

@media (max-width: 768px) {
	.left-right {
		flex-direction: column;
		align-items: center;
	}

	.topnav {
		position: fixed;
		top: 0;
		z-index: 1000;
		transition: none;
	}
}

/*images*/
img {
	width: 35%;
	border-color: #FFE182;
	border-width: 1%;
	border-style: solid;
	border-radius: 360px;
	padding: 30px;
}

.poster {
	border-color: #FFE182;
	border-width: 1%;
	border-style: dashed;
	border-radius: 0px;
	padding: 0px;
}

/*links*/

a {
	text-decoration: underline;
	color: #727072;
}

a:hover {
	color: #FFE182;
	background-color: transparent;
	text-decoration: underline;
}
a:active {
	color: #FFE182;
}

.presentation {
	padding: 20px;
	border-style: solid;
	border-color: transparent;
	font-size: clamp(15px, 2vw, 23px);
	font-family: 'Roboto Condensed', sans-serif;
	text-align: center;
	transition: transform 0.25s ease-out;
	text-decoration: none;
	border-radius: 0px;;
}

.presentation:hover{
	transform: scale(1.1);
	transition: transform 0.25s ease-out;
	text-decoration: none;
}

.topnav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 20px;
	background-color:#FBFDFF;
	border-bottom-color: #FFE182;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	/*box-shadow: 0px 8px 16px 0px #FFE182;*/
	position: fixed;
	height: 5.5vw;
	min-height: 50px;
	width: 100vw;
	box-sizing: border-box; /*ensure padding stays 100%*/
	transition: top 0.3s; /* Transition effect when sliding down (and up) FBFDFF*/
	z-index: 1000;
}

.topnav-text {
	display: flex;
	gap: 20px;
}

.topnav a, #navlink{
	color: #727072;
	font-size: clamp(19px, 2vw, 23px);
	font-family: 'Roboto Condensed', sans-serif;
	padding: 15px;
	text-decoration: none;
}

.topnav a:hover {
	color: #FFE182;
}

	/*30secondsofcode*/
.hover-underline-animation {
	display: inline-block;
	position: relative;
}

.hover-underline-animation::after {
	content: '';
	position: absolute;
	width: 80%;
	transform: scaleX(0);
	height: 2px;
	bottom: 11px;
	left: 9px;
	background-color: #FFE182;
	transform-origin: bottom center;
	transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left; }
		/*30secondsofcode*/
		
		/*w3schools*/
/* The dropdown container */
.dropdown {
	float: left;
	overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
	font-size: 16px;
	border: none;
	outline: none;
	color: rgb(228, 15, 15);
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit; /* Important for vertical align on mobile phones */
	margin: 0; /* Important for vertical align on mobile phones */ 
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #FBFDFF;
	min-width: 130px;
	border-style: solid;
	border-width: 3px;
	border-color: #FFE182;
	border-top: #FBFDFF;
	z-index: 1;
}

.dropdown:hover .dropdown-content {
	display: block;
}
	/*w3schools*/

.footer {
	margin-top: auto;
	background-color: #FFE182;
	bottom: 0px;
	width: 100vw;
	margin: 0px;
	padding: 10px;
	text-align: center;
}

.footer a {
	font-size: clamp(15px, 1.25vw, 20px);
	font-family: 'Roboto Condensed', sans-serif;
	display: inline-block;
	margin-right: 2%;
	padding: 10px;
	text-decoration: none;
}

.footer a:hover {
	color: #727072;
	transform: scale(1.1);
}


/*whoosh in effect*/
	.spacer {
		height: 21vh;
		/* Adds scroll space before first animation */
	}

	.whoosh-in {
		opacity: 0;
		transform: translateY(50px);
		transition: opacity 0.6s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
		will-change: opacity, transform;
	}

	.whoosh-in.visible {
		opacity: 1;
		transform: translateY(0);
	}

			.whoosh-in.whoosh-up.visible {
				transform: translateY(0);
			}
	
			.whoosh-in.whoosh-down.visible {
				transform: translateY(0);
			}
	
			/* Entering from below (scrolling down) */
			.whoosh-in.whoosh-up {
				transform: translateY(50px);
			}
	
			/* Entering from above (scrolling up) */
			.whoosh-in.whoosh-down {
				transform: translateY(-50px);
			}