@charset "UTF-8";
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	width: 100%;
	position: relative;
	font-size: 100%;
}
/* CSS Document */

header, section, article, aside, figure, figcaption, nav, footer {
	display:block;	
}
#topBar {
	width: 100%;
	height: 100px;
	position: fixed;
	z-index: 1000;
	top: 0px;
	left: 0px;
	background-color: rgba(255,255,255,1.00);
}
nav {
	width: 960px;
	margin: 0 auto;
	height: 100px;
	position: relative;
}
.btn {
	width: 100px;
	height: 100px;
	overflow: hidden;
	position: absolute;
	left: auto;
}
.btn img:hover {
	margin-top: -100px;
}
#btn1 {
}
#btn1 img {
	margin-left: 0px;
}
#btn2 {
	left: 113px;
}
#btn2 img {
	margin-left: -100px;
}
#btn3 {
	left: 249px;
}
#btn3 img {
	margin-left: -200px;
}
#btn4 {
	left: 594px;
}
#btn4 img {
	margin-left: -300px;
}
#btn5 {
	left: 694px;
}
#btn5 img {
	margin-left: -400px;
}
#btn6 {
	left: 831px;
}
#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*/
	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;
}
article {
	background-color: #FFFFFF;/*Allows this area to be vertically ELASTIC with non-floated content*/
	width: 100%;
	position: relative;
	overflow: auto;/*Allows this area to be vertically ELASTIC with floated content*/
	height: auto;
	min-height: calc(100vh - 300px);
}
#article1 {
	background-color: rgba(246,243,243,0.57);
}
#article2 {
	background-color: rgba(255,255,255,0.61);
}
#article3 {
	background-color: rgba(255,255,255,0.59);
}
#article4 {
	background-color: rgba(255,255,255,0.59);
}
#article5 {
	background-color: rgba(255,255,255,0.61);
}
.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;
	background-color: rgba(255,255,255,0.68);
}figure {
	text-align: center;
	border: 4px solid #000;
	margin: 10px;
	padding: 10px;
}
#poemThumbnails {
	display: -webkit-flex;
	justify-content: center;
	flex-wrap: wrap;
}
#poemThumbnails figure {
	border-radius: 25px;
}
#figure1{
	-webkit-transform: rotate(-5deg);/*for chrome and safari */
	-moz-transform: rotate(-5deg);/*for firefox */
	-o-transform: rotate(-5deg);/*for opera */
	-ms-transform: rotate(-5deg);/*for internet explorer */
	transform: rotate(-5deg);/*for other browsers */
	margin-right: 10px;
	margin-bottom: 0px;
	margin-top: 20px;
	width: 224px;
	height: 175px;
}
#figure2{
	-webkit-transform: rotate(deg);/*for chrome and safari */
	-moz-transform: rotate(deg);/*for firefox */
	-o-transform: rotate(deg);/*for opera */
	-ms-transform: rotate(deg);/*for internet explorer */
	transform: rotate(deg);/*for other browsers */
	width: 224px;
	height: 170px;
}
#figure3{
	-webkit-transform: rotate(5deg);/*for chrome and safari */
	-moz-transform: rotate(5deg);/*for firefox */
	-o-transform: rotate(5deg);/*for opera */
	-ms-transform: rotate(5deg);/*for internet explorer */
	transform: rotate(5deg);/*for other browsers */
	margin-top: 19px;
	width: 224px;
	height: 176px;
}
#artthumbnail {
	padding: 10px;
	margin: 10px;
	width: 320px;
	border: 1px solid #000;
	height: 237px;
	float: left;
}
