@charset "UTF-8";
/* CSS Document */
nav {
    width: 100%;
    height: 150px;
    position: fixed;/*Fixes the nav elements to top of page and will not scroll with content*/
    top: 0;
    left: 0;
    z-index: 600;/*This LARGE number ensures nav elements will be on TOP of sections and article*/
    background-image: url(../images/BgTopBar.png);
}
#buttons {
    width: 980px;
    height: 20px;
    margin: 0 auto;/*centers all buttons to browser*/
}
#btn1 {
    margin-left: 125px;/*used to shift all buttons to the right inside #buttons*/
	background-color: #EF5B5D;
}
#btn2 {
	background-color: #E7B85D;
}
#btn3 {
	background-color: #FFFB7F;
}
#btn4 {
	background-color: #5AE95A;
}
#btn5 {
	background-color: #7ED8DB;
}
#btn6 {
	background-color: #C072C4;
}
#btn7 {
	background-color: #C8C8C8;
}
.btn {/*styling for all the buttons*/
	width: 100px;
	height: 30px;/*Same as #buttons above*/
	float: left;
	cursor: pointer;
	text-align: center;
	color: #FFFFFF;
	border-radius: 62px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	font-family: BerlinSmallCaps;
	border-color: #FFFFFF;
	border-style: inset;
	padding-top: 3px;
	padding-right: 0px;
	margin-right: 5px;
	margin-top: 3px;
	font-size: 14px;
}
section {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 100;/*Must be smaller than z-index for nav above*/
	background-position: center;
	background-repeat: no-repeat;
}
article, footer {
    width: 970px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 50px;/*Used to push article content down from top to prevent overlap with top buttons*/
}
/*Set the background images for each section*/
#section1 {
    background-image: url(../images/bg01.png);
}
#section2 {
    background-image: url(../images/bg02.png);
}
#section3 {
    background-image: url(../images/bg03.png);
}
#section4 {
    background-image: url(../images/bg04.png);
}
#section5 {
    background-image: url(../images/bg05.png);
}
#section6 {
    background-image: url(../images/bg06.png);
}
#section7 {
    background-image: url(../images/bg07.png);
}
article {
	height: auto;
}
#article1 {
	background-color: rgba(250,80,80,0.50);/*The 0.5 at the end makes the solid color 50% transparent*/
}
#article2 {
	background-color: rgba(251,194,77,0.50);
}
#article3 {
	background-color: rgba(225,225,0,0.50);
}
#article4 {
	background-color: rgba(110,226,91,0.50);
}
#article5 {
	background-color: rgba(103,199,232,0.50);
}
#article6 {
	background-color: rgba(195,114,234,0.50);
}
footer {
    background-color: rgba(51,51,51,0.5);
    color: #FFF;
    text-align: center;
    font-size: 0.8em;
}
/*
Here are some commonly used CSS class selectors which 
-class rules can applied to multiple elements on a page
-can be applied in any combination
*/
@font-face {/*instructions to browser where to find your custom font*/
    font-family: maiden;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:        url(../fonts/maiden.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
            url(../fonts/maiden.eot);/*.eot for IE browsers*/    
}
@font-face {/*instructions to browser where to find your custom font*/
    font-family: guitarRumble;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:        url(../fonts/guitarRumble.ttf),/*.ttf for non-IE browsers - the comma is very important!!!!*/
            url(../fonts/guitarRumble.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;
}
#centeringDiv {
    width:980px;/*optimum width for both desktops, laptops, and tablets*/
    height:850px;/*optimum height for both desktops, laptops, and tablets*/
    margin:0 auto;/*0 = no margin for top and bottom and auto = same margin for left and right*/
    position:relative;/*all children divs inside centeringDiv take their (x,y) position from top left of centeringDiv*/    
    z-index:1;/*stacking order - small numbers a below high numbers*/
}

article {/*used for the main content area*/
	position: relative;
	width: 100%;
	min-height: 600px;
	height: auto;
	padding: 10px;
	z-index: 900;/*stacking order - below nav and .btn but above section*/
	color: #000000;
	font-family: BerlinSmallCaps;
	font-size: x-large;
}
article p {
    text-indent:3em;/*an rem is the size of a letter m relative to what's set in the body css rule*/
}
footer {
    clear:both;/*clears away and floating or text wrapping*/
    position:relative;
    text-align:right;
    font-size:0.8em;
    width:100%;
    line-height:1.2em;/*This will help to vertically center the text */
    height:auto;
    z-index:800;/*stacking order - below article, nav, and .btn*/        
}
/*===========Class rules to apply to multiple elements in the HTML===============================*/
.frame {/*this creates a frame around photo/text*/
	width: auto;/*fits the frame tightly around the photo/text*/
	height: auto;/*fits the frame tightly around the photo/text*/
	margin: 3px 10px 10px 10px;/*separates the outer wrapping text away from the frame border*/
	padding: 5px;/*separates the inner photo/text away from the frame border*/
	text-align: center;/*centers any caption under/above the photo inside frame*/
	border: 5px double #000000;/*styles the frame - adjust as desired*/
}
.frame p, figure p, figcaption p {text-indent: 0px;}/*for any paragraphs inside photo frames*/
.floatLeft {    float: left;}/*positions an element on the left of parent div and have text wrap around it*/
.floatRight {float: right;}/*positions an element on the right of parent div and have text wrap around it*/
.centerText {text-align: center;}/*apply to p, h1, h2, h3, h4, h5, h6 tags - positions text in center of parent div*/
.centerBox {    margin:0 auto;clear: both;}/*apply to div or figure tags - positions element in center of parent div - no outer text wrapping*/
.clearFloats {clear: both;}/*apply to div tags - clears away and floating or text wrapping*/
.roundedCorners10 {border-radius: 10px;}/*apply to img tags for rounded corners*/
.roundedCorners15 {border-radius: 15px;}
.roundedCorners20 {border-radius: 20px;}
.boxShadow5 {box-shadow: 5px 5px 5px #000000;}/*apply to div or img tags for shadows*/
.boxShadow10 {box-shadow: 10px 10px 10px #000000;}
.textShadow5 {text-shadow: 5px 5px 10px #000000;}/*apply to p, h1, h2, h3, h4, h5, h6 tags for shadows*/
.textShadow10 {text-shadow: 10px 10px 20px #000000;}
