@charset "UTF-8";
/* CSS Document */
@font-face{ 
font-family: headerFont;
src:url(../fonts/headerFont.ttf); /*How to find font */
}
@font-face{ 
font-family: paragraphFont;
src:url(../fonts/paragraphFont.ttf)
}
* { /*This applies to everything */
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {	
}
p {
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
}
nav {
	background-color: #FFFFFF;
	height: 150px;
	width: 100%;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-content: 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;
	margin-bottom: auto;
}
.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-flex;
	display: flex;
	justify-content: center;
	align-content: center;
	position: relative;
	font-size: 4em;
}
.headerText {
	margin: auto;
	font-family: headerFont;
	src: url(../fonts/headerFont.ttf);
	letter-spacing: 7px;
	font-size: 1.7em;
}
#header1 .headerText {
	color: #ECECEC;
}
#header4 .headerText {
	color: #FAFAFA;
	font-size: 2.5em;
}
#header5 .headerText {
	color: #FBFBFB;
}
article {
	width: 100%;
	height: auto;
	padding: 20px 0;
	position: relative;
	font-family: paragraphFont;
	src: url(../fonts/paragraphFont.ttf);
	background-color: rgba(255,255,255, 0.6)
}
#article4 .centeringDiv p {
	color: #FFFFFF;
}
.centeringDiv {
	width: 100%;
	height: auto;
	min-height: 300px;
	max-width: 980px;
	margin: 0 auto;
	position: relative;
}
#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);
}
.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;
	display: flex;
	justify-content: center;
	align-content: center;
	margin-top: 48px;
}
#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%;
}
#artTitle {
	text-align: center;
	font-size: 1.7em;
	font-weight: 900;
	margin-bottom: 65px;
	color: #FDFDFD;
}
#art {
	width: 210px;
	height: auto;
	margin-bottom: 13px;
	text-align: center;
	color: #FAFAFA;
	border-width: 1px;
	border-style: solid;
	padding: 4;
	float: left;
	margin-left: 0px;
	margin-right: 25px;
}
.screenshot {
	width: 100%;
	height: auto;
	max-width: 980px;
	display: block;
	margin-top: 30px;
	margin-bottom: 15px;
}
footer {
	width: 100%;
	height: auto;
	text-align: center;
	padding-bottom: 13px;
	padding-top: 20px;
	font-size: 0.8em;
	font-family: paragraphFont;
	src: url(../fonts/paragraphFont.ttf);
}
