@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;
	btn-sizing:border-btn;
}
body {
}
nav {
	background-color: #FFFFFF;
	height: 140px;
	width: 100%;
	display: -webkit-flex; /* For Chrome and Safari, must be enabled for justifying/aligning to work */
	display: flex; /* For all other browsers, must be enabled for justifying/aligning to work */
	justify-content: center; /* Horizontal alignment */
	align-content: center; /* Vertical alignment */
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 1000;
}
/* CSS Document */

.btn {
	width: 100px;
	height: 100px;
	font-size: 1em;
	overflow: hidden;
	cursor: pointer;
	float: left;
	margin-top: auto; /* Needed for align-content to work */
	margin-bottom: auto;
	margin-left: 20px;
	margin-right: 20px;
}
.btn img:hover {
	margin-top: -100px;
}
#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;
}
#section1 {
	background-image: url(../images/bg1.jpg);
	margin-top: 140px;
}
#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);
}
header {
	width: 100%;
	height: 60vh;
	display: -webkit-flex;
	displey: flex;
	justify-content: center;
	align-content: center;
	position: relative;
	font-size: 4em;
	min-height: 0px;
}
.headerText {
	margin: auto;
	font-family: headerFont;
	font-size: 2em;
	letter-spacing: 15px;
	color: #FFFFFF;
}
article {
	width: 100%;
	height: auto;
	background-color: #FFFFFF;
	padding: 20px 0;
	position: relative;
	font-family:paragraphFont;
}
.centeringDiv {
	width: 100%;
	height: auto;
	min-height: 300px;
	max-width: 980px;
	margin: 0 auto;
	position: relative;
}
.centeringDiv p {
	margin-bottom: 1em;
}
#allPoems {
	width: 100%;
	height: auto;
	position: relative;
	display: -webkit-flex; /* For Chrome and Safari, must be enabled for justifying/aligning to work */
	display: flex; /* For all other browsers, must be enabled for justifying/aligning to work */
	justify-content: center; /* Horizontal alignment */
	align-content: center; /* Vertical alignment */
	margin-top: 25px;
}
#allPoems figure {
	width: 200px;
	margin: auto;
	height: auto;
	text-align: center;
	padding: 5px;
	border-radius: 25px;
	border: 1px solid #000000;
}
#allPoems figure img {
	border-radius: 50%;
}
.videoWrapper {
	position: relative;
	padding-bottom: 49.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%;
}
#artTitle {
	text-align: center;
	font-size: 1.5em;
	font-weight: 600;
	margin-bottom: 23px;
}
#art {
	width: 210px;
	height: auto;
	margin-bottom: 11px;
	text-align: center;
	font-size: 0.74em;
	border-width: 1px;
	border-style: solid;
	padding-top: 6px;
	padding-bottom: 2px;
	padding-right: 1px;
	padding-left: 1px;
	float: left;
	margin-right: 18px;
}
.screenshot {
	width: 100%;
	height: auto;
	max-width: 980px;
	display: block;
	margin-top: 14px;
	margin-bottom: 14px;
}
footer {
	width: 100%;
	height: auto;
	padding: 10px 0;
	text-align: center;
	font-size: 0.8em;
	font-family: paragraphFont;
}
