/* Fonts */
@font-face {
	font-family: 'TF2 Build';
	src: url('../fonts/TF2Build.ttf') format('truetype');
	font-weight: normal;
    font-style: normal;
	font-display: swap;
  }

/* Animations */
@keyframes slideInText {
	0% {
	  transform: translateY(-47px);
	  opacity: 0;
	}
	100% {
	  transform: translateY(0px);
	  opacity: 1;
	}
	
}

@keyframes slideIn {
	0% {
		transform: translateY(-35px);
		opacity: 0;
	}

	70% {
		transform: translateY(0.5px);
	  }

	100% {
		opacity: 1;
	}
	
}

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

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

/**********************************
*Generic Selectors
**********************************/

body{
    margin: 0;
    background-color: #3E3E3E;
}

/**********************************
*Header Navigation
**********************************/

#headerNav {
	position:sticky;
	z-index:1;
}

#HeaderContNav{
	position:relative;
	width: 100%;
	height:80px;
	background:#231F20;
}

#HeaderNavOptions a {
	text-decoration:none;
	padding: 30px;
	color:#ff1111;
	font-size:20px;
	text-shadow:1px 1px 2px rgba(0, 0, 0, 0.5);
	font-family:"TF2";
}

#Dropdown{
	padding: 10px;
}

#DropdownImage{
	width: 10%;
	display: block;
	margin: auto;
	animation: SpinOnce 1.3s ease-out normal both;
}

/**********************************
*Header Logo and Containers
**********************************/
#HeaderLogo{
	font-family: 'TF2 Build';
	text-align: center;
	font-size: 50px;
}

#HeaderContLogo{
	display:inline-block;
	position:relative;
	margin-top: -30px;
}

#logo{
	position:relative;
}

#logo{
	display: block;
	margin-top: 100px;
	color: white;
	z-index: 1;
}

#logo-img{
	width: 90%;
	animation: slideIn 1.5s ease-out normal both;
}

#logo-img:click{
	filter:drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.808)) brightness(2);
}

/**********************************
*Header Text
**********************************/
#WelcomeText{
	z-index: -1;
	margin-top: 5px;
}

#WelcomeText{
	animation: slideInText 0.9s ease-out .7s normal both;
}