@charset "UTF-8";
/* CSS Document */
@font-face {
	font-family: nameFont;
	src: url(../fonts/nameFont.ttf);
}
@font-face {
	font-family: titleFont;
	src: url(../fonts/titleFont.ttf);
}
@font-face {
	font-family: btnFont;
	src: url(../fonts/btnFont.ttf);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background-image: url(../images/background2.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #8992BB;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 0;
}
#initialImage {
	width: 100%;
	height: 100%;
	position: relative;
	background-image: url(../images/background1.png);
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 10000;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#nameBox {
	color: #A30002;
	font-size: 5em;
	text-align: center;
	cursor: pointer;
	z-index: 10001;
	font-family: nameFont;
	width: 865px;
	height: 101px;
	display: block;
	position: relative;
}
.firstLetter {
	color: #000000;
	font-size: 6rem;
}
#bgMusicController {
	width: 77px;
	height: 62px;
	display: block;
	overflow: hidden;
	margin: 0 auto;
	position: relative;
	cursor: pointer;
}
#bgMusicController img {
	margin-left: -75px;
}
#contentHolder {
	width: 100%;
	height: 650px;
	position: relative;
	z-index: 7000;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	flex-direction: column;
}
#navNcontent {
	width: 100%;
	height: 650px;
	position: relative;
	z-index: 8000;
	margin: auto;
}
nav {
	width: 980px;
	margin: 0 auto;
	height: 50px;
	position: relative;
	padding-top: 40px;
	z-index: 9000;
	display: -webkit-flex;
	display: flex;
	align-content: center;
	justify-content: space-between;
	flex-direction: row;
	margin-top: -25px;
	margin-bottom: 80px;
}
.btn {
	cursor: pointer;
	width: 70px;
	height: 70px;
	border-radius: 70px;
	background-color: rgba(175,0,0,1.00);
	display: -webkit-flex;
	display: flex;
	align-content: center;
	justify-content: center;
	flex-direction: row;
	flex-wrap: no-wrap;
}
.btn span {
	margin: auto;
	font-size: 1.13em;
	font-family: btnFont;
	color: rgba(255,196,197,1.00);
}
#centeringDiv {
	width: 980px;
	height: 600px;
	position: relative;
	margin: 50px auto;
}
#allArticles {
	height: 600px;
	width: 980px;
	overflow: hidden;/*Necessary to hide non-visible articles*/
	position: relative;
	clear: both;/*ensures articles start below anything above, not to the side*/
}
#allArticlesWrapper {
	position: absolute;
	z-index: 100;
	height: 600px;/*should be total height of 1 article including padding and margin*/
	width: 10000px;/*total width of ALL individual articles including padding and margin*/
	left: 0px;
	top: 0px;
	background-color: rgba(255,0,3,0.30);
}
article {
	margin: 10px;
	height: 580px;
	width: 960px;
	position: relative;
	float: left;/*positions all articles side by side*/
}
article figure {
	width: 100%;
	padding: 10px;
	height: auto;
	text-align: center;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
}
section h1 {
	font-family: titleFont;
	font-size: 3.5em;
	text-align: center;
}
section p {
	font-family: asul;
	font-style: normal;
	font-weight: 400;
	text-align: center;
}
section {
	padding: 5px;
	background-color: rgba(255,122,193,0.61);
}
footer {
	width: 100%;
	height: 30px;
	position: absolute;
	bottum: 0;
	left: 0;
	display: -webkit-flex;
	dislpay: flex;
	align-content: center;
	justify-content: center;
	font-size: 1em;
	z-index: 7500;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
	margin-top: 5px;
}

@media screen and (orientation:portrait) and (max-width:480px) {
nav, .btn {
	display: none;
}
figure, img {
	max-width: 480px;
	height: auto;
	width: 100%;
	margin-top: 10px;
	float: none;
	align: center;
}
#allArticles, #allArticlesWrapper, #centeringDiv {
	width: 100%;
	height: auto;
	position: relative;
	margin: 0;
}
article {
	float: none;
	height: auto;
	width: 100%;
	margin: 0;
	margin-bottom: 50px;
	clear: both;
	padding: 3px;
	position: relative;
}
#contentHolder {
	width: 100%;
	height: auto;
	position: relative;
	clear: both;
}
section h1 {
	font-size: 3.5em;
	text-align: center;
}
#nameBox {
	font-size: 2em;
}
#nameBox {
	width: 100%;
}
#bgMusicController {
	width: 100%;
}
section figure img {
	height: auto;
	max-width: 480px;
	width: 100%;
}
.firstLetter {
	font-size: 1em;
}
section {
	margin-bottom: 50px;
}
footer {
	position: relative;
}
}
