@charset "UTF-8";
/*CSS Document*/
@font-face{
	font-family:hederFont;
	src:url(file:///HomeFolders/MorganF-Media/Websites/project1/fonts/HeaderFont.ttf)/*how to fined font*/
}
@font-face{
	font-family:paragraphFont;
	src:url(file:///HomeFolders/MorganF-Media/Websites/project1/fonts/paragraphFont.ttf)/*how to fined font*/
}
* {/*This is a rule that applies to everything - * = wildcard */
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
}
nav {
	background-color: #FFFFFF;
	height: 150px;
	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;
}
.btn {
	width: 100px;
	height: 100px;
	font-size: 1em;
	overflow: hidden;
	cursor: pointer;
	float: left;
	margin-top: auto;/*IMPORTANT!!!! pairs with align-content */
	margin-bottom: auto;/*IMPORTANT!!!! pairs with align-content */
}
.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;
}
header {
	width: 100%;
	height: 100vh;
	display: -webkit-box-flex;
	display: flex;
	justify-content: center;
	align-content: center;
	position: reliative;
	font-size: 4em;
}
.headerText {
	font-family: hederFont;
	margin-top: auto;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: auto;
	letter-spacing: 26px;
	color: #FFFFFF;
}
#header2 .headerText {
	color: #FFFFFF;
	font-size: larger;
}
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{
	text-indent: 3em;
	margin-bottom: 1em;
}
#section1 {
	background-image: url(../images/bg1.jpg);
	margin-top: 150px;
}
#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);
}
p {
}
.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;
	align-content: center;/* vertically center*/
	margin-top: 26px;
}
#allPoems figure {
	width: 200px;
	margin: auto;
	height: auto;
	border: 1px solid #000000;
	padding: 5px;
	border-radius: 25px 25px 0px 0px;
	text-align: center;
}
#allPoems figure img {
	border-radius: 0%;
}
#poem1 {
	-webkit-transform: rotate();
	transform: rotate();
}
#poem3 {
}
#artTitle {
	text-align: center;
	font-size: 2em;
	margin-bottom: 34px;
}
#art {
	width: 200px;
	height: auto;
	margin-bottom: 25px;
	text-align: center;
	float: left;
	margin-right: 15px;
}
.screenshot {
	width: 100%;
	height: auto;
	max-width: 980px;
	display: block;
	margin-top: 28px;
	margin-bottom: 17px;
}
footer {
	width: 100%;
	height: auto;
	text-align: center;
	padding-top: 15px;
	font-size: 0.8em;
	font-family:paragraphFont;
}
