@charset "UTF-8";
@font-face {
	font-family: headerFont;
	src: url(../fonts/headerFont.ttf);/*how to find font */
}
@font-face {
	font-family: paragraphFont;
	src: url(../fonts/paragraphFont.ttf);/*how to find font */
}
* {/*This is a rule that applies to everything - * = wildcard */
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border-color: #000000;
}
body {
}
nav {
	height: 100px;
	background-color: #FFFFFF;
	width: 100%;
	display: -webkit-flex;/*for Chrome and Safari */
	display: flex;/*for all other browsers */
	justify-content: center;/*horizontally center*/
	align-content: center;/*vertically center*/
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 8000;
}
#allPoems figure {
	width: 200px;
	margin: auto;
	height: auto;
	text-align: center;
	padding: 5px;
}
#poem1 {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
/* CSS Document */

.btn {
	width: 100px;
	height: 100px;
	font-size: 1.5em;
	overflow: hidden;
	cursor: pointer;
	float: left;
	margin-top: auto;/*IMPORTANT pairs with align-content*/
	margin-bottom: auto;/*IMPORTANT pairs with align-content*/
	margin-left: auto;
	margin-right: auto;
}
#btn1 img {
	margin-left: 0px;
}
#btn2 img {
	margin-left: -100px;
}
#btn3 img {
	margin-left: -200px;
}
#btn4 img {
	margin-left: -300px;
}
#btn5 img {
	margin-left: -400px;
}
#btnProjects img {
	margin-left: -500px;
}
section {
	width: 100%;
	height: auto;
	min-height: 700px;
	position: relative;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-origin: content-box;
	background-size: cover;
}
header {
	width: 100%;
	height: 400px;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-content: center;
	position: relative;
	font-size: 4em;
}
.headerText {
	font-family: headerFont;
	margin: auto;
	font-size: 3.5em;
	letter-spacing: normal;
}
article {
	font-family: paragraphFont;
	width: 100%;
	height: auto;
	background-color: #FFFFFF;
	padding: 30px 0;
	position: relative;
}
.centeringDiv {
	width: 100%;
	height: auto;
	min-height: 300px;
	max-width: 980px;
	margin: 0 auto;
	position: relative;
}
.centeringDiv p{
	margin-bottom: 0.3em;
}
#section1 {
	background-image: url(../images/bg1.jpg);
	margin-top: 85px;
}
#section2 {
	background-image: url(../images/bg2.jpg);
}
#section3 {
	background-image: url(../images/bg3.jpg);
}
#section4 {
	background-image: url(../images/bg4.jpg);
}
#section5 {
	background-image: url(../images/bg5.jpg);
}
.btn img:hover {
	margin-top: -100px;
}
.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: 0;
	left: 0;
	max-width: 853px;/*change as desired*/
	max-height: 480px;/*if you change max-width, make sure the height has a ratio of 16:9*/
	width: 100%;
	height: 100%;
}
#allPoems {
	width: 100%;
	height: auto;
	position: relative;
	display: -webkit-flex;/*for Chrome and Safari */
	display: flex;/*for all other browsers */
	justify-content: center;/*horizontally center*/
	align-content: center;/*vertically center*/
	margin-top: 16px;
}
#artTitle {
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 18px;
}
#art {
	width: 210px;
	height: auto;
	margin-bottom: 23px;
	text-align: center;
	font-size: small;
	float: left;
	margin-right: 8px;
}
.screenshot {
	width: 100%;
	height: auto;
	max-width: 980px;
	display: block;
	margin-top: 30px;
	margin-bottom: 22px;
}
footer {
	width: 100%;
	height: auto;
	padding: 15px;
	text-align: center;
	font-size: 0.9em;
	font-family: paragraphFont;
}
