/*
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: titleFont;/*use any name but don't start with a number and don't use spaces or strange characters*/
	src: url(../fonts/titleFont.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: 0px;
	padding: 0px;
}
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: 0px;/*removes default edges*/
	padding: 0px;/*removes default settings*/
	z-index: 0;/*stacking order - small numbers a below high numbers*/
}
#nameBox {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000000;
	font-family: nameFont;
	font-size: 10em;
	background-image: url(../images/background1.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	color: cadetblue;
	cursor: pointer;
}
.firstLetter {
	font-size: 3em;
	color: cadetblue;
}
#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: 100%;/*change as needed*/
	height: 100px;/*change as needed*/
	margin: 0 auto;
	background-color: #835556;
	z-index: 930;/*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: 0px;
	left: 0px;
}
.btn {
	z-index: 1002;/*stacking order, bigger numbers are on top*/
	color: azure;
	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;
	border: 3px solid;
	padding: 8px;
	font-family: btnFont;
	font-size: 2em;
	-webkit-transition: all 0.5s linear 0s;
	-o-transition: all 0.5s linear 0s;
	transition: all 0.5s linear 0s;
}
.btn:hover {
	color: #63A2BE;
	border-color: #ABA25C;
	font-size: 2.5em;
}
/*----header styles------*/
header, #allArticles {
	width: 100%;/*This is changed by javascript*/
	margin: auto;
}
header {
	padding: 10px;
	width: 100%;
	display: flex;
	align-content: center;
	justify-content: center;/* flex-start, flex-end, space-between */
	height: 200px;/*adjust this to your desired header height*/
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;/*REQUIRED to completely cover the entire width of headers*/
	margin-bottom: 10px;/*To separate header from main text section */
	z-index: 201;
}
.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);
}
#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: 100vh;
	margin: 0 auto;
	z-index: 100;
}
#allArticlesWrapper {
	z-index: 200;
}
article {
	float: left;
	z-index: 300;
	height: 100vh;
	max-width: 100vw;
	width: 100%;
	padding-top: 100px;
	background-color: #B87273;
}
section {/*used for the main content area*/
	clear: both;/*clears away and floating or text wrapping*/
	width: 100%;
	height: auto;
	padding: 10px;
	z-index: 901;/*stacking order - below nav and .btn but above section*/
}
section h1 {
	text-align: center;
	font-size: 2em;
}
section p {
	margin-bottom: 1em;
	text-indent: 3rem;/*an rem is the size of a letter m relative to what's set in the body css rule*/
}
section h2 {
	display: none;
}
#img0 {
	cursor: default;
}
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: #A2BACB;
	color: #fff;
}
/*===========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 {
		height: auto;
		float: none;
		width: 100%;
		position: relative;
	}
	#nameBox {
		font-size: 3rem;
	}
	nav, header {
		display: none;
	}
	#allArticles, article {
		padding-top: 0px;
		position: relative;
	}
	article {
		min-height: 75vh;
	}
	#article0 {
		padding-top: 75px;
	}
	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;
		display: block;
	}
	section {
		min-height: 50vh;
		height: auto;
	}
	section p {
		line-height: 2em;
	}
	section figure {
		float: none;
		margin: 0 auto;
	}
	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: darkcyan;
	}
}
