@charset "UTF-8";
/* CSS Document */
@font-face{
	font-family:nameFont;
	src:url(../fonts/nameFont.ttf);
}
@font-face{
	font-family:btnFont;
	src:url(../fonts/btnFont.ttf);
}
@font-face{
	font-family: bodyFont;
	src: url(../fonts/btnFont.ttf);
}
*{
	box-sizing:border-box;
	margin:0;
	padding:0;
}
body {
	background-image:url(../images/background2.jpg);
	background-size:cover;
	background-repeat:no-repeat;
	background-color: #FFFFFF;
	margin:0;
	padding:0;
	z-index:0;
	font-family: bodyFont;
}
nav {
	width: 100%;
	height: 50px;
	position: relative;
	display:-webkit-flex;
	display:flex;
	align-items:center;
	justify-content:center;
}
.btn {/*adjust as needed for all buttons*/
	width: 150px;
	height: 23px;
	background-color: rgba(229,90,147,1.00);
	cursor: pointer;
	margin:auto;
	text-align: center;
	font-family: btnFont;
}
#centeringDiv{
	max-width:980px;
	width:100%;
	height:auto;
	margin:0 auto;
	position:relative;
}
#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*/
	color: #FFFFFF;
	font-family: bodyFont;
	font-size: x-large;
}
#allArticlesWrapper {
	position: absolute;
	z-index: 100;
	height: 600px;/*should be total height of 1 article including padding and margin*/
	width: 11000px;/*total width of ALL individual articles including padding and margin*/
	left: 0px;
	top: 0px;
}
article {
	margin: 10px;
	height: 580px;
	width: 960px;
	position: relative;
	float: left;/*positions all articles side by side*/
}
article h1 {
	text-align: center;
	font-size: 2em;
}
article figure {
	width: 100%;
	height: auto;
	padding: 10px;
	text-align: center;
}

#initialImage{
	width:100%;
	height:100%;
	position:relative;
	z-index:10000;
	display:-webkit-flex;
	display:flex;
	align-items:center;
	justify-content:center;
	background-image:url(../images/background1.jpeg);
	background-size:cover
}
#nameBox{
	width: 628px;
	height: 99px;
	position: relative;
	font-family:nameFont;
	font-size:5em;
	text-align: center;
	z-index: 10001;
	cursor:pointer;
	color: #E55A93;
}
#bgMusicController {
	overflow: hidden;
	width: 120px;
	margin: 0 auto;
	height: 100px;
	cursor: pointer;
}
#bgMusicController img {
	margin-left: -182px;
}
footer {
	padding: 10px;
	width: 100%;
	text-align: center;
	color: #FFFFFF;
	font-size: 0.8em;
}

@media screen and (max-width:480px){
	nav, .btn {display:none}
	img {
		max-width:480px; 
		width:100%;
		height:auto;
		}
	#allArticles, #allArticlesWrapper, #centeringDiv {
		max-width:480px;
		width:100%;
		height:auto;
		position:relative;
		}
	article {
		float:none;
		height:auto;
		width:100%;
		margin-bottom:50px;
		}
}
