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

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

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

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

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

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

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

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

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

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

body{
	font-family: "TF2";
    margin: 0;
    background: url("../graphics/Blogs/OrangeBox.png") no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	box-shadow: 40px 10px 100px #231F20 inset, -40px 10px 100px #231F20 inset; 
}

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

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

#HeaderContNav{
	width: 100%;
	height:80px;
	background:#231F20;
	box-shadow: 40px 10px 100px #000000 inset, -40px 10px 100px #000000 inset; 
}

#HeaderNavOptions ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

#HeaderNavOptions li{
    font-family: "TF2";
	font-size: 30px;
    line-height: 40px;
    display: inline-flex;
    padding: 5px 30px;
}

#HeaderNavOptions a{
	transition: .3s;
    color: #ff1111;
    list-style: none;
    text-decoration: none;
}

#HeaderNavOptions a:hover{
	transition: .3s;
    color: #ff8787;
	filter:drop-shadow(0px 0px 10px rgba(255, 58, 58, 0.582))
}

#HeaderSoon a{
	display: inline-flex;
	float:right;
	color:#231F20;
	background:#AAAAAA;
}

@media (max-width: 710px) {
	#HeaderNavOptions li{
		padding:20px 10px !important;
	}
}

#HeaderNavOptions a:hover {
	text-shadow:1px 5px 5px rgba(0, 0, 0, 0.8);
}

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

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

#logo{
	position:relative;
}

#logo{
	margin-top: 100px;
	color: white;
}

#logo-img{
	animation: slideIn 1.5s ease-out normal both;
	transition: .2s;
}

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

/**********************************
*Header Text
**********************************/
#WelcomeText{
	margin-top: 5px;
	filter:drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.808))
}

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

/**********************************
*Body
**********************************/
#Body{
	margin-top: 250px;
}

#BodyCont{
	background: white;
	display:flex;
	position:relative;
	margin:auto;
	overflow:auto;
}

#BodyContent{
	padding: 10px 50px;
	font-size: 25px;
}

/**********************************
*Article
**********************************/

#BodyArticle{
	display: block;
	text-align:justify;
	padding: 50px;
}

#BodyArticle h1{
	text-align: center;
	margin: -30px;
}

#BodyArticle p{
	padding: 50px;
}

.BlogRight{
	display: block;
	margin: auto;
	width: 70%;
	padding: 20px;
}
/**********************************
*Footer
**********************************/

#Footer{
	background:#231F20;
	position:relative;
	padding:15px;
	z-index:1;
}

#Footer{
	box-shadow: 0px -15px 100px #000000; 
}

#FooterCont{
	display: flex;
}

#FooterCopyright{
	float: left;
	display: block;
	color: white;
	font-size: 23px;
	padding: 30px;
}

#FooterLogo{
	padding: 40px;
	display: block;
	float: right;
}