/*
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: titleFont2;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/titleFont2.ttf);/*.ttf for non-IE browsers - the comma is very important!!!!*/
}
@font-face {/*instructions to browser where to find your custom font*/
    font-family: nameFont;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/nameFont2.ttf);/*.ttf for non-IE browsers - the comma is very important!!!!*/
}
@font-face {/*instructions to browser where to find your custom font*/
    font-family: dropCapFont;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/dropCapFont.ttf);/*.ttf for non-IE browsers - the comma is very important!!!!*/ 
}
@font-face {/*instructions to browser where to find your custom font*/
    font-family: btnFont;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/btnFont.ttf);/*.ttf for non-IE browsers - the comma is very important!!!!*/ 
}
* {
    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*/
    position: relative;
    margin: 0;
    padding: 0;
}
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*/
}
#nameBox   {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000000;
	font-family: nameFont;
	font-size: 5em;
	background-image: url(../images/bg1.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
	cursor: pointer;
}
.firstLetter {
	font-size: 1em;
}
#centeringDiv, .centeringDiv{
    max-width:980px;/*optimum width for both desktops, laptops, and tablets*/
    width:100%;/*allows the page to resize it's width to fit smaller devices*/
    height: auto;/*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*/
    z-index:1;/*stacking order - small numbers a below high numbers*/
}
nav {
    width:100vw;/*change as needed*/
    height:100px;/*change as needed*/
    margin: 0 auto;
	background-color:#000000;
    z-index:1001;/*stacking order, bigger numbers are on top*/
    display:-webkit-flex;/*allows elements in nav to have flexible locations*/
    display:flex;/*allows elements in nav to have flexible locations*/
    justify-content:center;/*horizontally centers all elements in nav*/
    align-items:center;/*vertically centers all elements in nav for a single row of elements*/
    flex-direction:row;/*places all elements in nav in a row - other option is column*/
    flex-wrap:no-wrap;/*ensures that elements in nav do NOT wrap to a 2nd row*/ 
	position: fixed;
	top: 0;
	left: 0;
}
.btn {
	z-index: 1002;/*stacking order, bigger numbers are on top*/
	color: #fff;
	margin: auto;/*IMPORTANT! togther with btn justify-content will space out buttons automatically*/
	display: -webkit-flex;/*allows elements in btn to have flexible locations*/
	display: flex;/*allows elements in btn to have flexible locations*/
	justify-content: center;/*horizontally centers all elements in btn*/
	align-items: center;/*vertically centers all elements in btn for a single row of elements*/
	flex-direction: row;/*places all elements in btn in a row - other option is column*/
	flex-wrap: no-wrap;/*ensures that elements in btn do NOT wrap to a 2nd row*/
	cursor: pointer;
	font-family: btnFont;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}
.btn:hover {
	color: #3801A3;
	font-size: 1.8em;
}
#btn0 {
	color: #3801A3;
	font-size: 1.8em;
}
/*----header styles------*/
header {
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;/*REQUIRED to completely cover the entire width of headers*/
	font-family: btnFont;	
    width:100vw;
    height:400px;
    display:-webkit-flex;/*allows elements in nav to have flexible locations*/
    display:flex;/*allows elements in nav to have flexible locations*/
    align-items:center;/*vertically centers all elements in header for a single row of elements*/
    z-index:1000;/*stacking order - small numbers a below high numbers*/
}
.headerTitle {
	text-align: center;
	color: #000000;/*Text color*/
	font-size: 3em;
	font-weight: bold;
	margin: auto;/*REQUIRED to vertically and horizontally center*/
	z-index: 202;
}
#header0 {
	background-image: url(../images/bg0.jpg);
	background-position: -8px 50px;
}
#header1 {
	background-image: url(../images/bg1.jpg);
}
#header2 {
	background-image: url(../images/bg2.jpg);
}
#header3 {
	background-image: url(../images/bg3.jpg);
}
#header4 {
	background-image: url(../images/bg4.jpg);
}
#header5 {
	background-image: url(../images/bg5.jpg);
}
#header6 {
	background-image: url(../images/bg6.jpg);
}
#header7 {
	background-image: url(../images/bg7.jpg);
}
#header8 {
	background-image: url(../images/bg8.jpg);
}
#header9 {
	background-image: url(../images/bg9.jpg);
}
/*----Main content styles -------*/
#allArticles {
	width: 100%;
	height: auto;
	padding-top: 50px;
	z-index: 100;
	overflow: hidden;
}
#allArticlesWrapper {
	padding: 0;
	margin: 0;
	z-index: 200;
}
article {
	width: 100vw;
	float: left;
	z-index: 300;
	height: auto;
}
section h1 {
	text-align: center;
	font-size: 2em;
}
section p {
	margin-bottom: 1em;
	text-indent: 0em;
}
section {/*used for the main content area*/
    clear:both;/*clears away and floating or text wrapping*/
    width:100%;
    height:auto;
    padding:10px 10px 100px 10px;
    z-index:901;/*stacking order - below nav and .btn but above section*/ 
}
section p {
    text-indent: 3rem;/*an rem is the size of a letter m relative to what's set in the body css rule*/
}
.thumbnail {
	cursor: pointer;
	z-index: 902;
}
#img0 {
	cursor: auto;
}
footer {
    clear: both;/*clears away and floating or text wrapping*/
    display: -webkit-flex;/*allows elements in btn to have flexible locations*/
	display: flex;/*allows elements in btn to have flexible locations*/
	justify-content: center;/*horizontally centers all elements in btn*/
	align-items: center;/*vertically centers all elements in btn for a single row of elements*/
    font-size: 0.8rem;
    width: 100%; 
    height: 40px;
    z-index: 900;/*stacking order - below article, nav, and .btn*/
	position: fixed;
	bottom: 0px;
	left: 0px;
	background-color: #000;
	color: #fff;
	font-family: btnFont;
}
/*===========Class rules to apply to multiple elements in the HTML===============================*/
figure {max-width:300px; width:100%; float: left; margin-right:20px;}/*change if needed for global figure widths*/
figure, figure p, figcaption p {text-indent: 0; text-align:center;}/*for any captions or paragraphs inside figure tags*/
figure img {width: 100%; height:auto;cursor: pointer;}/*forces image in figure to fit a specific figure width set with other CSS - default is 500px wide*/
.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*/
.clearFloats {clear: both; width:100%; position:relative; height:1px;}/*apply to div tags - clears away and floating or text wrapping*/


/*Style for small mobile devices */
@media screen and (max-width:667px){
	body {
		overflow: auto;
	}
	#allArticlesWrapper, article, header, section {
		max-width: 100%;
		width: 100%;
		height: auto;
		float: none;
	}
	#nameBox   {
		font-size: 2em;
	}
	nav, header {
		display: none;
	}
	section figure img {
		max-width:400px;
		width:100%;
		height:auto;
		border-radius:50%;
		cursor: pointer;
	}
	section h2 {
		text-align: center;
		font-size: 2em;
		font-family: titleFont2;
	}
	section {
		min-height: 50vh;
		height: auto;
		padding-bottom: 50px;
	}
	#allArticles {
		padding-top: 50px;
	}
	section p {
		line-height: 2em;
	}
	section figure figcaption {
		font-size: 0.7em;
	}
	.dropCap {
		font-family: titleFont2;
		font-size: 2.5em;
		font-weight: bold;
		margin-right:1px;
		float: left;
		padding-top: 5px;
		margin-bottom: 20px;
		display: block;
	}
	body {
		background-color: #20707F
	}
}
