@charset "UTF-8";
/* CSS Document */
/*
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: 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: btnFont;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/btnFont2.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*/
	background-color: #5EA692;
}
#blocker {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 0vw;
	height: 0vh;
	background-color: rgba(0,0,0,0);
	z-index: 10000000000;
}
#nameBox {
	width: 100%;
	height: 100vh;
	background-image: url(../images/background2.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000000000000000000;
	font-family: nameFont;
	font-size: 5em;
	cursor: pointer;
	position: fixed;
	top: 0px;
	left: 0px;
}
.firstLetter {
	font-size: 2em;
	color: #001E1A;
	margin-bottom: 15px;	/*font-style: italic;*/
}
#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*/
}
header {
    padding:10px;
    width:100%;
    height:150px;
    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*/
}
nav {
    width:auto;/*change as needed*/
    /*change as needed*/
    margin: 0 auto;
    z-index: 1000001;/*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*/
	left: 0;
}
nav, .navShiftBtn {
	height:200px;
	top: calc(50vh - 100px);
	position:absolute;
	padding-top: 40px;
}
.navShiftBtn {
	width: 10vw;
	z-index: 1000002;
	cursor: pointer;
}
#navShiftBtnL {
	left: 0;
}
#navShiftBtnR {
	right: 0;
}
.btn {
    z-index:1002;/*stacking order, bigger numbers are on top*/  
    margin: 0 15vw;/*IMPORTANT! togther with btn justify-content will space out buttons automatically*/
	width: 20vw;
	font-family: btnFont;
	color: #fff;/*#003723;*/
	cursor: pointer; 
	font-size: 4rem;
	text-align: center;
}
#bt00{
	margin-left: -10vw;
}
#bt00, #bt99 {
	cursor: auto;
}
.btnTitle, .btnSubTitle {
	height: auto;
	display: block;
}
.btnSubTitle {
	font-size: 2rem;
}
#closeBtn{
	color: #000;
	font-family: btnFont;
	position: absolute;
	top: 50px;
	right: 50px;
	width: auto;
	cursor: pointer;
	z-index: 1000001;
	font-size: 2em;
}
.title {
	text-align: center;
	margin-bottom: 10px;
	font-family: mr-dafoe;
	font-style: normal;
	font-weight: 400;
	font-size: 3em;
	color: #002C1C;
}
#allArticles {
	width: 100%;
	min-height: 100vh;
	height: auto;
    z-index:890;
	position: fixed;
	top: 0;
	left: 0;
	overflow: visible;
	
}
#allArticlesWrapper{
	width: 100%;
	min-height: 100vh;
	height: auto;
    z-index:890;
	position: relative;
	top: 0;
	left: 0;
}
article {
	width: 100%;
	min-height: 100vh;
	height: auto;
    z-index:900;
	
}
section {/*used for the main content area*/
	max-width: 1000px;
    width:100%;
    min-height:100vh;
	height: auto;
    z-index:901;/*stacking order - below nav and .btn and article*/ 
    clear:both;/*clears away and floating or text wrapping*/
	margin: auto;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	
}
section div {
	width: 100%;
}
.sectionIMG {
	z-index: 902;
	width: 100%;
	height: auto;
	text-align: center;
}
.sectionIMG img {
	z-index: 903;
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
	transform-origin: 50% 50%;
}
.sectionContent {
	width: 100%;
	height: 100vh;
	margin: auto;
	z-index: 902;
	padding: 15% 0;
}
.sectionContent figure {
	width: 300px;
	height: auto;
	margin: 0 auto;
	z-index: 903;
}
.thumbnail {
	cursor: pointer;
}

article p {
    text-indent: 0rem;/*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*/
    font-size: 0.8rem;
    width: 100%;
    line-height: 1.2rem;/*This will help to vertically center the text */ 
    height: 20px;
    z-index: 900;/*stacking order - below article, nav, and .btn*/ 
	padding: 20px 0px;
	background-color: #001E1A;
	color: #5EA692;
	position: fixed;
	left: 0px;
	top: calc(100vh - 40px);
	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;
}
/*===========Class rules to apply to multiple elements in the HTML===============================*/

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;}/*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*/


/*small mobile phone styles*/
@media screen and (max-width:667px){
	#nameBox, body, #allArticles, article {
		width: 100%;
	}
	nav, .sectionIMG {
		display:none;
	}
	#allArticles {
		height: auto;
		z-index:890;
		position: relative;
		overflow:auto;
	}
	article {
		height: auto;
		z-index:900;
	}
	footer {
		position: relative;
		width: 100%;
		height: auto;
		top: 0;
		display: none;
		margin: 0px;
		text-align: center;
	}
	section figure img {
		max-width: 330px;
		width: 75%;
		height: auto;
		border: 3px solid #02473D;
		border-radius: 50%;
		box-shadow: 5px 5px 20px 0px #000;
	}
	section {
		width:100%;
		padding: 8px;
		height: auto;
		border-bottom: 3px solid #00483C;
	}
	.sectionContent {
		display: block;
		height: auto;
	}
	.title {
	text-align: center;
	margin-bottom: 10px;
	font-family: mr-dafoe;
	font-style: normal;
	font-weight: 400;
	font-size: 3em;
	color: #002C1C;
	}
	section fig figcaption {
		font-size: 0.7em;
		padding-top: 20px;
	}
	section p {
		line-height: 1.5em;
		
	}
	body {
		background-color: #5EA692;
	}
	.dropCap {
		font-family: mr-dafoe;
		font-size: 3em;
		margin-top: 5px;
		margin-right: 15px;
		display: block;
		float: left;
	}
	#nameBox {
		font-size: 2.5em;
	}
	.firstLetter {
		font-size: 6rem;
	}
}
