@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 300;
	src: url(https://jbenedict.com/assets/font/Poppins.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Comfortaa';
	font-style: normal;
	font-weight: 600;
	src: url(https://jbenedict.com/assets/font/Comfortaa.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Source Code Pro';
	font-style: normal;
	font-weight: 400;
	src: url(https://jbenedict.com/assets/font/SourceCodePro.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Sofia Pro Black';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(https://jbenedict.com/assets/font/SofiaProBlack.woff) format('woff');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
html {
	overflow:  hidden;
	background-color:  #010409;
}
bold {
	color: #a30b00;
}
.typecenter {
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	font-size: 30px;
	font-family: sans-serif;
	font-weight: 600;
	color: white;
}
.staticwelcome { 
	width: 100%;
	text-align: center;
	position: absolute;
	top: 43%;
	font-size: 40px;
	font-family: sans-serif;
	font-weight: 600;
	color: white;
}

@media only screen and (max-device-width: 650px) {
	.desktopheader {
		visibility: hidden;
	}
	.desktopbuttons {
		visibility: hidden;
	}
}
@media only screen and (min-device-width: 651px) {
	.mobileheader {
		visibility: hidden;
	}
	.mobilebuttons {
		visibility: hidden;
	}
}
.header {
	z-index: 2;
	width: 90%;
	left: 5%;
	position: fixed;
	top: 30px;
	padding-top: 15px;
	padding-bottom: 15px;
	display: flex;
	border: rgba(255, 255, 255, .1) 1px solid;
	border-radius: 15px;
	background-color: rgba(38, 38, 38, .8);
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
	.header {
		background: 0 0;
		-webkit-backdrop-filter: blur(7px);
		backdrop-filter: blur(7px);
	}
}
.logo-container {
	padding-left: 25px;
	padding-right: 25px;
}
.logo {
	animation-name: logo-animation;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	transform-origin: 50% 50%;
	transform: scale(1);
	transition: all .2s linear;
}
.logo:hover {
	filter: drop-shadow(0 0 7px rgba(255, 255, 255, .35));
}
.logo:active {
	filter: drop-shadow(0 0 7px rgba(255, 255, 255, .2));
}
@keyframes logo-animation {
	0% {
		transform: rotate(3deg);
	}
	50% {
		transform: rotate(-3deg);
	}
	100% {
		transform: rotate(3deg);
	}
}
.navbar-icon {
	position: absolute;
	transform: scale(1);
	transition: all .2s linear;
	font-family: Comfortaa;
	font-size: 40px;
	cursor: pointer;
}
.navbar-iconbutton {
	color: #ffffff;
}
.navbar-icon:hover {
	filter: drop-shadow(0 0 7px rgba(255, 255, 255, .35));
	transform: scale(1.075) rotate(1deg);
}
.navbar-icon:active {
	transform: scale(.95);
}	
.navbar-nav {
	font-family: Sofia Pro Black;
	font-size: 20px;
	padding: 15px;
	padding-left: 1%;
	padding-right: 1%;
	transition: all .1s linear;
}
.navbar-button {
	color: #969696;
	text-decoration: none;
}
.navbar-nav:hover {
	filter: drop-shadow(0 0 7px rgba(255, 255, 255, .35));
	transform: scale(1.075) rotate(1deg);
}
.navbar-nav:active {
	transform: scale(.95);
}
.dropdown-container {
	position: absolute;
	margin: auto;
	width: 100%;
}
.dropdown-content {
	display: block;
	opacity: 0;
	visibility: hidden;
	z-index: 100;
	transition: opacity 0.5s ease-in-out, visibility 0s linear 0.5s;
	position: absolute;
	width: 100%;
	height: 1000px;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, .8);
	text-align: center;
}
.dropdown-text {
	font-family: Sofia Pro Black;
	font-size: min(max(25px, 7vw), 55px);
	padding-top: 10px;
	padding-bottom: 5px;
	color: #ffffff;
	text-decoration: none;
	transition: all .1s linear;
}
.dropdown-text:hover {
	filter: drop-shadow(0 0 7px rgba(255, 255, 255, .35));
	transform: scale(1.05);
}
.dropdown-text:active {
	transform: scale(.95);
}
.dropdown-space {
	height: min(max(50px, 20vh), 200px);
}
.show {
	opacity: 1;
	visibility: visible;
	transition-delay: 0s;
}
.footer {
	z-index: 2;
	width: 100%;
	height: 70px;
	position: absolute;
	display: table;
	bottom: 0;
	right: 0;
	color: #969696;
	font-family: Sofia Pro Black;
	font-size: 15px;
	border-top: rgba(255, 255, 255, .1) 1px solid;
	background-color: #1e1e1e;
}
.footer-nav {
	padding-left: 10px;
	padding-right: 10px;
	transition: all .1s linear;
}
.footer-nav:hover {
	filter: drop-shadow(0 0 7px rgba(255, 255, 255, .35));
	transform: scale(1.075) rotate(1deg);
}
.footer-nav:active {
	transform: scale(.95);
}
.links {
	display: flex;
	text-align: center;
	justify-content: center;
	margin: auto;
	padding-top: 10px;
}
.madeby {
	display: flex;
	text-align: center;
	justify-content: center;
	margin: auto;
	padding-bottom: 10px;
}
.fadeIn {
	opacity: 0;
	animation: 3s ease-out 4.5s 1 reveal forwards;
}
@keyframes reveal {
	from {opacity: 0;}
	to {opacity: 1;}
}
@keyframes unReveal {
	from {opacity: 1;}
	to {opacity: 0;}
}
