@charset "UTF-8";
/* CSS Document */
* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
body {
	font-family: open-sans;
	font-style: normal;
	font-weight: 300;
	background-image: url(../../../../Documents/Websites/project0/images/ever-wonderred-what-do-tigers-eat.jpg);
	background-color: rgba(166,136,197,1.00);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-attachment:fixed;
}
header {
	width: 100%;
	height: 87vh;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: row;
	flex-wrap: no-wrap;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
#headerTitle {
	text-align: center;
	font-size: 4em;
	margin: auto;
	font-weight: 400;
	background-color: rgba(255,255,255,0.55);
	padding: 10px;
	-webkit-box-shadow: 10px 10px 21px 3px #000;
	box-shadow: 10px 10px 21px 3px #000;
	letter-spacing: 23px;
	font-family: baumans;
	border-radius: 5px;
	font-style: normal;
}
#headerTitle img {
	-webkit-box-shadow: 10px 10px 21px 3px #000;
	box-shadow: 10px 10px 21px 3px #000;
	border-radius:50%;
}
#intro, article {
	-webkit-box-shadow: 10px 10px 21px 3px #6A6A6A;
	box-shadow: 10px 10px 21px 3px #6A6A6A;
	border-radius: 5px;
}
#intro {
	width: 100%;
	height: auto;
	padding: 20px;
	max-width: 980px;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
	z-index: 90;
	background-image: -webkit-linear-gradient(90deg,rgba(163,190,255,1.00) 0%,rgba(222,159,175,1.00) 100%);
	background-image: -moz-linear-gradient(90deg,rgba(163,190,255,1.00) 0%,rgba(222,159,175,1.00) 100%);
	background-image: -o-linear-gradient(90deg,rgba(163,190,255,1.00) 0%,rgba(222,159,175,1.00) 100%);
	background-image: linear-gradient(0deg,rgba(163,190,255,1.00) 0%,rgba(222,159,175,1.00) 100%);
}
#bgMusicBox {
	width: 300px;
	margin: 5px;
	height: auto;
	float: right;
	z-index: 100;
	border: 1px solid rgba(0,0,0,1.00);
	overflow: hidden;
	padding: 5px;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: row;
	flex-wrap: no-wrap;
	border-radius: 5px;
}
#intro audio {
	width:100%;
	height:27px;
	margin:auto;
}
#allArticles {
	width: 100%;
	height: auto;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-content: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
}
article {
	margin: 20px;
	width: calc(50% - 50px);
	height: auto;
	background-color: rgba(255,255,255,1.00);
	max-width: 800px;
}
.articleContent {
	padding: 5px;
}
.articleTitle {
	font-size: 2em;
	text-align: center;
}
.articleContent figure {
	width: 100%;
	height: auto;
	text-align: center;
	overflow: hidden;
	margin-top: 10px;
}
figure img {
	width: 100%;
	height: auto;
}
#intro p {
	margin-bottom: 10px;
}
footer {
	width: 100%;
	padding: 8px;
	height: auto;
	font-size: 0.8em;
	text-align: center;
}

@media screen and (max-width:667px){
	body {
		background-size: auto auto;
	}
	article {
		width:100%;
	}
	header {
		background-size: auto auto;
	}
	#headerTitle {
		font-size: 2em;
	}
	#intro {
		width:calc(100% - 40px);
		margin: 20px;
	}
}
