/*
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: customName1;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/filename1.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;
}
#bgDiv {
	width: 100vw;
	height: 100vh;
	background-repeat: no-repeat;
	position: fixed;
	background-position: center center;
	background-size: 95% 95%;
	background-image: url(../images/grey-washed-wall-1920x1080.png); 
}
#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: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*/
}
#iconDiv {
	width: 150px;
	height: 100px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0px;
	text-align: center;
	bottom: auto;
	margin-top: 0px;
}
.no-js body #bgDiv {
}
#backToTop {
	width: 66px;
	height: 66px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
}
header {
	padding: 10px;
	height: 154px;
	position: relative;/*all children divs inside header take their (x,y) position from top left of header*/
	z-index: 1000;/*stacking order - small numbers a below high numbers*/
	text-align: center;
	color: rgba(94,92,92,1.00);
	font-size: 500%;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	width: 100%;
}
nav {
    position:relative;/*all children divs inside nav take their (x,y) position from top left of nav*/ 
    width:100%;/*change as needed*/
    height:100px;/*change as needed*/
    z-index:1001;/*stacking order, bigger numbers are on top*/
    display:flex;/*allows elements in nav to have flexible locations*/
    justify-content:center;/*centers all elements in nav*/
    flex-direction:row;/*places all elements in nav in a row - other option is column*/
    flex-wrap:no-wrap;/*ensures that elements in nave do NOT wrap to a 2nd row*/ 
}
.btn {
    position:relative;
    text-align:center;
    z-index:1002;/*stacking order, bigger numbers are on top*/  
    margin:auto;/*togther with nav justify-content will space out buttons automatically*/
}
.btn a:link {
	color: rgba(90,90,90,1.00);
	text-decoration: none;
}
.btn a:hover {
	color: rgba(90,90,90,1.00);
	text-decoration: underline;
}
    section {/*used for the main content area*/
    position:relative;
    width:100%;
    min-height:600px;
    height:auto;
    z-index:900;/*stacking order - below nav and .btn and article*/ 
    clear:both;/*clears away and floating or text wrapping*/
}
article {/*used for the main content area*/
	position: relative;
	clear: both;/*clears away and floating or text wrapping*/
	width: 102%;
	min-height: 433px;
	height: auto;
	padding: 10px;
	z-index: 949;/*stacking order - below nav and .btn but above section*/
	color: #000000;
	font-family: annie-use-your-telescope;
	font-style: normal;
	font-weight: 400;
	text-align: justify;
	font-size: x-large;
}
article p {
    text-indent:3rem;/*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: center;
	font-size: 0.8rem;
	width: 100%;
	line-height: 1.2rem;/*This will help to vertically center the text */
	height: auto;
	z-index: 900;/*stacking order - below article, nav, and .btn*/
	margin-top: 35px;
	margin-bottom: 15px;
	padding-bottom: 35px;
}
/*===========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: 1px dotted #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;}
.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: 191px;
	left: -21px;
	max-width: 853px;/*same width as video itself*/
	max-height: 480px;/*same height as video itself*/
	width: 975px;
	height: 564px;
}
.kenny {
	height: 40px;
	margin-top: 50px;
}
.delete {
	height: 66px;
}
.bookjacket {
	margin-left: 397px;
}
