/*-----Prevents iPhone from resizing in landscape mode -----*/
html {
	-webkit-text-size-adjust: none;
}

/*----------- apply a natural box layout model to all elements --------------*/
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

/*-----BODY -----*/
body {
	font-size: 16px;
}


/*-----CONTAINER -----*/
#container {
	background-color: #fff;   /*becomes the nav background color*/
	min-width: 320px;
	max-width: 1140px;
	box-shadow: 4px 4px 20px #222222;
}

/*-----HEADER -----*/
header {
	display: flex;
	justify-content: space-around;
	background-color: #468966;
	align-items: center;
	width: 100%;
	flex-direction: column;
	min-height: 25vh;
}
header img {
	width: 35%;
	margin-right: 2%;
}
header h1 {
	font-size: 32px;
	color: #FFB03B;
}
header h2 {
	font-size: 24px;
	color: #FFF0A5;
}
header .social img {
	width: 30%;
	margin-right: 1%;
}



/*-----NAVigation -----*/
nav {}
nav ul li {}
nav ul li a {
	display: block;
	background: #468966;
	width: 96%;
	border-radius: 10px;
	margin: 10px auto;
	text-align: center;
	padding: 10px;
	color: #FFB03B;
	text-decoration: none;
	font-size: 28px;
}



/*-----CONTENT -----*/
#content {
	min-height: 5em;
	margin: 0 2%;
}

#content .banner {
	width: 100%;
	box-shadow: 0px 0px 15px 5px rgba(255, 176, 59, 0.5);
	margin-bottom: 20px;
}

#content .img-container {
	max-height: 400px;
	overflow: hidden;
}

#content .img-container img {
	width: 100%;
	display: block;
}

#content .kids {
	width: 80%;
	display: block;
	margin: 0 auto;
	border-radius: 25%;
}

#content h1 {
	font-size: 22px;
	color: #FFB03B;
	margin: 20px 0 0;
}

#content h1.tablet, h1.desktop {
	display: none;
}

#content hr {
	border: none;
	height: 8px;
	border-color: transparent;
	background: -moz-linear-gradient(left, rgba(70,137,102,1) 0%, rgba(70,137,102,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(70,137,102,1) 0%,rgba(70,137,102,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(70,137,102,1) 0%,rgba(182,73,38,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

#content p {
	font-size: 18px;
}

#content .content-boxes{
	clear: both;
}

#content .news, #content .tweet {
	position: relative;
}

#content .news h2, .tweets h2 {
	box-shadow: inset 0 0 6px 5px #254937;
	background-color: #468966;
	color: white;
	padding: 10px;
	margin: 15px 0 5px;
}

#content .news p, .tweets p {
	background-color: gray;
	height: 300px;
	overflow: scroll;
	padding: 5px;
}



/*----- FOOTER -----*/
footer {
	background-color: #468966;
	clear: both;
	margin-top: 20px;
	text-align: center;
	padding: 1em;
	position: relative;
}
