#topBar{/*This is a fixed position bar along the top*/
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;/*makes this bar as wide as the browser*/
	height: 60px;
	z-index: 99998;/*places bar top most so it's always clickable*/
	background-color: rgba(120,0,2,1.00);
}
@font-face {/*instructions to browser where to find your custom font*/
    font-family: p6font;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/GearedSlab.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
    url(../fonts/filename1.eot);/*.eot for IE browsers*/ 
}
@font-face {/*instructions to browser where to find your custom font*/
    font-family: customName2;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/filename2.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/ 
    url(../fonts/filename2.eot);/*.eot for IE browsers*/ 
}
* {
    box-sizing:border-box;/*This allows you to set and border width and padding but the div will retain its set width and set height*/
}
html, body {
    width:100%;
    min-height:100%;
    height:auto;
}
header, nav, section, article, figure, figcaption, aside, footer {/*ensures older browsers display these tags correctly*/
    display:block;
    /*DON'T ADD anything else in this selector block - only this property should be in this CSS selector set*/
}
body {/*these are the 5 basic CSS properties and values to start a website*/
    font-family: Verdana, sans-serif;/*change this for your design*/
    font-size:100%;/*DON'T CHANGE THIS VALUE HERE - you can set font sizes in other selector styles*/
    color: rgba(0,0,0,1.00);/*main text color, default black, change as needed*/    
    margin:0;/*removes default edges*/
    padding:0;/*removes default settings*/
    z-index:0;/*stacking order - small numbers a below high numbers*/
    position:relative;
}
#topBarCentering{
	width: 1000px;
	height: 75px;
	margin: 0 auto;/*this centers this box*/
	position: relative;
	z-index: 99999;
	padding-left: auto;
}
.btn {
	cursor: pointer;
	width: 100px;
	margin-bottom: 38px;
	padding-top: 12px;
	font-size: 18px;
	margin-left: 40px;/*You can also add styles such as text link color, custom fonts, font-size, etc.*/
}
#btn1 {
	margin-left: 10px;
}
.btn:hover {
/*You can add styles for when user hovers over the button*/
} 
 	header, section, article, aside, figure, figcaption, nav, footer {
	display:block;	
}
section {
	width: 100%;
	background-size: cover;/*This makes the image proportionally resize itself to cover the width of the screen*/
	background-origin: content-box;/*VERY IMPORTANT - this sets where the background begins to be visible*/
	background-attachment: fixed;/*VERY IMPORTANT - this makes the image NOT scroll with the content*/
	background-repeat: no-repeat;/*Not needed if your image is tall enough*/	
}
#section1 {
}
#section2 {
}
#section3 {
}
#section4 {
}
#section5 {
}
header {
	width: 100%;
	height: 85px;
	padding-top: 3px;
	font-size: 3em;
	text-align: center;
	position: relative;
	top: 0;
	left: 0;
	-webkit-box-shadow: 0 0 rgba(0,0,0,1.00);
	box-shadow: 0 0 rgba(0,0,0,1.00);
	background-image: url(../images/Background.png);
}
#header1{
	width: 100%;
	height: 160px;
	padding-top: 70px;
	font-size: 3em;
	text-align: center;
	position: relative;
	top: 0;
	left: 0;
	color: rgba(120,0,2,1.00);
	}
#header2{
	width: 100%;
	height: 100px;
	padding-top: 20px;
	font-size: 3em;
	text-align: center;
	position: relative;
	top: 0;
	left: 0;
	color: rgba(120,0,2,1.00);
	}
#header3{
	width: 100%;
	height: 100px;
	padding-top: 20px;
	font-size: 3em;
	text-align: center;
	position: relative;
	top: 0;
	left: 0;
	color: rgba(120,0,2,1.00);
	}
#header4{
	width: 100%;
	height: 100px;
	padding-top: 20px;
	font-size: 3em;
	text-align: center;
	position: relative;
	top: 0;
	left: 0;
	color: rgba(120,0,2,1.00);
	}
article {
	background-color: rgba(255,218,164,1.00);
	height: auto;/*Allows this area to be vertically ELASTIC with non-floated content*/
	width: 100%;
	position: relative;
	overflow: auto;/*Allows this area to be vertically ELASTIC with floated content*/
	min-height: calc(100vh - 150px);
	font-family: p6font;
	font-size: 20px;
	clear: both;
}  
.centeringDiv {
	margin-top: 50px;/*lowers centeringDiv so that it's not behind and covered up by the topBar*/
	padding: 10px;
	max-width: 960px;
	width: 100%;
	min-height: 300px;
	height: auto;/*Allows this area to be vertically ELASTIC*/
	margin: 0 auto;/*This centers the content on the browser*/
	position: relative;
	line-height: 27px;
}
.floatRight {/*YOU MAY ALREADY HAVE THIS SO don't copy this in such a case*/
	float: right;
}
.floatLeft {/*YOU MAY ALREADY HAVE THIS so don't copy this in such a case*/
	float:left;
}

.wrap {
	-webkit-shape-margin:0.2rem;/*This determines how close you want the text to be to the image*/
	-moz-shape-margin:0.2rem;/*rem stands for root em - you are changing the size relative to the size of 1em of the body (root) css instead of relative to the font-size of the parent container*/
	-ms-shape-margin:0.2rem;
	-o-shape-margin:0.2rem;
	shape-margin:0.2rem;
}
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	max-width:853px;/*same width as video itself*/
	width:100%;
	margin:0 auto;/*centers the video*/
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 853px;/*same width as video itself*/
	max-height: 480px;/*same height as video itself*/
	width: 100%;
	height: 100%;
}
.btn {
	position: relative;/*makes it draggable*/
	text-align: center;
	z-index: 1001;/*stacking order, bigger numbers are on top*/
	float: left;
	margin-right: 1px;
	cursor: pointer;
	margin-left: 50px;
	margin-bottom: 0px;
	font-family: p6font;
	font-size: 20px;
	top: 10px;
	color: rgba(0,0,0,1.00);
	background: rgba(187,76,5,1.00);
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
	border: 4px ridge rgba(245,210,134,1.00);
	height: 40px;
	padding-top: 5px;
	-webkit-box-shadow: 2px 2px 2px;
	box-shadow: 2px 2px 2px;
	border-radius: 94px;
}
.btn:hover {
	background: transparent;
	border-style: double;
}
.headerText{
	width: 400px;
	height: 75px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0px;
	font-family: p6font;
	font-size: 72px;
	text-align: center;
	text-shadow: 2px 2px 2px rgba(0,0,0,1.00);
	color: rgba(128,22,29,1.00);
}
#headerText1{
	margin-top:10px;
	}	
@media screen and (max-width:375px){
#topBar, aside {
	display: none;
}
article {
	font-size: 18px;
	height: auto;
}
.headerText {
	padding-top: 8px;
	font-size: 60px;
	margin-left: -20px;
}
#header1 {
	height: 85px;
	padding-top: 1px;
	
}
footer {
	font-size: 15px;
}
}
.videoWrapper {
	position: relative;
	padding-bottom: 40.25%; /* 16:9 */
	padding-top: 25px;
	padding-right: 25px;
	height: 0;
	max-width:853px;/*same width as video itself*/
	width:100%;
	margin:0 auto;/*centers the video*/
}
.videoWrapper iframe {
	position: relative;
	top: 0;
	left: 0;
	max-width:853px;/*same width as video itself*/
	max-height:480px;/*same height as video itself*/
	width: 100%;
	height: 100%;
}
@media screen and (max-width:768px){
topbar {
	width: 100px;
	display: block;
	float: left;
	height: auto;
}
header
article {
	float: left;
	width: calc(100% - 100px);
}
footer {
	clear: both;
}
.btn {
	width: 75px;
	margin-bottom: 38px;
	padding-top:8px;
	font-size: 16px;
	margin-left: 40px;
}
aside {
	display: none;
}
}
introDiv{
	float: left;
}
