@font-face{
	src:url(../fonts/headerfont.ttf);
	font-family:headerfont;
}
@font-face{
	src:url(../fonts/bodyfont.ttf);
	font-family:bodyfont;
}
* {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
/* CSS Document */

header, section, article, aside, figure, figcaption, nav, footer {
	display:block;	
}
body {
	margin: 0;
	padding: 0;
	width: 100%;
	position: relative;
	font-size: 100%;
}
#topBar {
	width: 100%;
	height: 100px;
	position: fixed;
	z-index: 1000;
	top: 0px;
	left: 0px;
}
nav {
	width: 960px;
	margin: 0 auto;
	height: 0px;
}
.btn {
	width: 100px;
	height: 100px;
	overflow: hidden;
	position: absolute;
	left: 1242px;
	top: 1px;
}
.btn img:hover {
	margin-top: -100px;
}
#btn1 {
	top: 1px;
	left: 300px;
}
#btn1 img {
	margin-left: 0px;
}
#btn2 {
	top: 1px;
	left: 550px;
}
#btn2 img {
	margin-left: -100px;
}
#btn3 {
	top: 2px;
	left: 800px;
}
#btn3 img {
	padding-left: 0px;
	margin-left: -200px;
}
#btn4 {
	top: 0px;
	left: 1050px;
}
#btn4 img {
	margin-left: -300px;
}
#btn5 {
	top: 0px;
	left: 1300px;
}
#btn5 img {
	margin-left: -400px;
}
#btn6 {
	top: 0px;
	left: 1500px;
}
#btn6 img {
	margin-left: -500px;
}
section {
	width: 100%;
	background-size: cover;/*This makes the image proportionally resize itself to cover the width of the screen*/
	background-origin: content-box;/*VERY IMPORTANT - this sets where the background begins to be visible*/
	background-attachment: fixed;/*VERY IMPORTANT - this makes the image NOT scroll with the content*/
	background-repeat: no-repeat;/*Not needed if your image is tall enough*/
	position: relative;
	padding-top: 100px;
}
#section1 {
	background-image: url(../images/backgrounds/bg1.jpg);/*Path relative to CSS file, not relative to html file*/
	margin-top: 100px;
}
#section2 {
	background-image: url(../images/backgrounds/bg2.jpg);
}
#section3 {
	background-image: url(../images/backgrounds/bg3.jpg);
}
#section4 {
	background-image: url(../images/backgrounds/bg4.jpg);
}
#section5 {
	background-image: url(../images/backgrounds/bg5.jpg);
}
header {
	width: 100%;
    height: 300px;
	padding-top: 10px;
	font-size: 3em;
	text-align: center;
	position: relative;
	top: 0;
	left: 0;
	font-family:headerfont;
}
article {
	background-color: rgba(255,255,255,0.53);
	height: auto;/*Allows this area to be vertically ELASTIC with non-floated content*/
	min-height: calc(100vh - 300px);
	width: 100%;
	position: relative;
	overflow: auto;/*Allows this area to be vertically ELASTIC with floated content*/
	font-family: bodyfont;
}
.centeringDiv {
	padding:10px;
	width: 960px;
	min-height:300px;
	height: auto;/*Allows this area to be vertically ELASTIC*/
	margin: 0 auto;/*This centers the content on the browser*/
	position: relative;
	z-index: 200;
}
#poemThumbnails {
	display: -webkit-flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 10px;
	margin-left: 10px;
	padding-left: 10px;
	padding-top: 10px;
	text-align: center;
	height: 250px;
	width: 100%;
}
#poemThumbnails figure {
	text-align: center;
	width: 210px;
	height: 155px;
}
#figure1{
	-webkit-transform: rotate(-25deg);/*webkit is for chrome and safari*/
	-moz-transform: rotate(-25deg);/*for Firefox*/
	-o-transform: rotate(-25deg);/*for opera*/
	-ms-transform: rotate(-25deg);/*for microsoft or IE*/
	transform: rotate(-25deg);/*for other browsers*/
}
#figure2{
	-webkit-transform: rotate(25deg);/*webkit is for chrome and safari*/
	-moz-transform: rotate(25deg);/*for Firefox*/
	-o-transform: rotate(25deg);/*for opera*/
	-ms-transform: rotate(25deg);/*for microsoft or IE*/
	transform: rotate(25deg);
	margin-right: 100px;
	margin-left: 100px;
}
#figure3{
	-webkit-transform: rotate(-25deg);/*webkit is for chrome and safari*/
	-moz-transform: rotate(-25deg);/*for Firefox*/
	-o-transform: rotate(-25deg);/*for opera*/
	-ms-transform: rotate(-25deg);/*for microsoft or IE*/
	transform: rotate(-25deg);/*for other browsers*/
}
#artthumbnail {
	width: 300px;
	margin: 10px;
	padding: 10px;
	height: auto;
	float: left;
}
#music {
	margin: 0 auto;
	width: 300px;
	height: 27px;
}
