@font-face {
   font-family:'Oswald-Regular';
     src: url('./Fonts/Oswald-Regular.woff') format('woff'),
     url('./Fonts/Oswald-Regular.ttf') format('truetype');
   font-weight: normal;
   font-style: normal;
   font-stretch: normal;
}

@font-face {
	font-family: 'NW';
	src: url('./Fonts/Norwester-Regular.woff') format('woff'),
	url('./Fonts/NorwesterRegular2.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
}

@font-face {
   font-family:'Lato';
     src: url('./Fonts/Lato-Medium.woff') format('woff'),
     url('./Fonts/Lato-Medium.ttf') format('truetype');
   font-weight: normal;
   font-style: normal;
   font-stretch: normal;
}

@font-face {
   font-family:'OpenS';
     src: url('./Fonts/OpenSans-SemiBold.woff') format('woff'),
     url('./Fonts/OpenSans-SemiBold.ttf') format('truetype');
   font-weight: normal;
   font-style: normal;
   font-stretch: normal;
}

html {
	width: 100%;
}

body {
	
	background-color: #FEFEcc;
	text-align: center;
	padding-bottom: 3em;
}

#BackgroundImage {
	width: 100%;
	max-width: 1920px;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: -1;
	background-color: #FEFECC;
	background-repeat: no-repeat;
	overflow-x: hidden;
}

#BackgroundImageTwo {
	display: none;	
}
.conform {
	width: 100%;
	margin-right: 1px;
}

.MiddleContainer {
   overflow: auto;
   width: 100%;
   margin: 1% 0px;
   position: relative;

}

.FormContainer {
   margin: 2em 2em 2em 30%;
   padding: 2em;
   background-color: rgba(0,0,0, 0.6);
   color: white;
   z-index: 2;
   width: 40%;
   min-width: 20em;
   text-align: left;
   overflow: hidden;
   font-size: 1em;
   outline: black solid .75em;
   opacity: 0;
   animation: fade-in 1s ease-in forwards;
}

#TextOne {
   width: 98%;
   margin: 2% 1% 0px 1%;
   color: white;
   font-family: Lato;
   font-size: 115%;
   font-weight: bold;
}

#TextTwo {
   width: 42%;
   margin: 0px 1%;
   color: black;
   font-family: Lato;
   font-size: 120%;
}

.as {
   display: none; 
}

.MenuItems {
	position: fixed;
	top: 40%;
	left: 10%;
	opacity: 0;
	animation: fade-in 1s ease-in forwards;
}

.MenuItems a {
	font-family: OpenS;
	background-color: #000;
	padding: .5em 1em;
	color: white;
	display: block;
	text-decoration: none;
	text-align: center;
}

.MenuItems a:hover {
	background-color: rgba(0,0,0, 0.6);
}
 
.MenuItems a.active {
	background-color: rgb(64,64,64);
}

.Yep {
	max-width: 25%;
	position: fixed;
	top: 10%;
	left:8%;
	overflow-x: hidden;
}

h1 {
	position: fixed;
	min-width:20%;
	max-width: 20%;
	margin: 5% auto 10% 5%;
	font-size: 3rem;
	float: left;
	opacity: 0;
	animation: fade-in 1s ease-in forwards;
}

.Leadsheet {
	margin: 2em auto 0em auto;
	display: block;
	width: 50%;
	filter: drop-shadow(1.1em 1.1em 1em black);
}

.text_display {
	float: none;
	font-family: OpenS;
	margin: 2em auto 0px 40%; 
	padding: 2em;
	background-color: rgba(0,0,0, 0.6);
	color: white;
	z-index: 2;
	width: 40%;
	text-align: center;
	overflow: hidden;
	font-size: 1.5em;
	outline: black solid .5em;
	opacity: 0;
	animation: fade-in 1s ease-in forwards;
}

.text_display a {
	color: white;
	font-family: NW;
}


.Heading {
	font-family: NW;
	font-weight: bold;
	text-transform: uppercase;
}

.oscillate {
	display: inline-block;
	color: black;
	animation-name: oscillate;
	animation-duration: 4s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

@keyframes oscillate {
	from {color : black;}
	to {color: white;}
	75%;
	100%;
}	

@keyframes fade-in {
	100% {
		opacity: 1;
}
}

@media only screen and (max-width: 700px) {
#BackgroundImage {
	position: relative;
}

#BackgroundImageTwo {
        display: inline-block;
	position: absolute;
	overflow: hidden;
}

.Leadsheet {
	margin: 1% auto;
	width: 98%;
}

h1 {
	position: absolute;
	text-align: right;
	max-width: 100%;
	margin: 1em .5em 1em 20%;
}

.text_display {
	margin: 0px auto;
	width: 75%;
}

.FormContainer {
	margin: 2em auto; 
	width: 82.5%;
	min-width: unset;
}

.MenuItems {
	position: unset;
	display: block;
	margin: 0px 0px 2em 0px;
	padding: 0px;
	width: 100%;
	outline: black solid .5em;
}

.Yep {
	max-width: 100%;
}

}

