@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;
}

.FixedContainer {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
}

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

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

.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);
}

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 5em 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;
}

@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 {
	width: 100%;
	filter: drop-shadow(.1em .1em .2em);
}

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

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

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

}

