/*
	Final Project
	Author: Pablo Bentancur
	Date:   1/22/2016

	Filename: pagestyles.css		
*/

article, aside, figure, figcaption, footer, hgroup, header, section, nav {
	display: block;
}

body{
	background-image: url(marbel.jpg);
	background-size: cover;
	margin-left: 10%;
	margin-right: 10%;
}

header { 
	background-color: 	green;	
	margin-bottom: 10px;
	border-radius: 5px;
	height: 140px;
} 

header h1{
	font-style: italic;
	text-align: center;
	color: white;
	font-size: 350%;	
	padding: 30px;
}

/* Styles for the horizontal navigation */ 

#horizontalNAV{
	background-color: green;
	padding: 3px;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
}

#horizontalNAV ul li{
	display: inline;
}

#horizontalNAV ul li a{
	text-decoration: none;
	font-family: Courier, Arial, serif;
	padding: 0.2em 1em;
	color: white;
	background-color: green;
}

#horizontalNAV ul li a:hover{
	color: green;
	background-color: white;
}

/* Styles for the aside */

aside{
	background-color: red;
	text-align: center;
	border-radius: 5px;
	float: right;
	width: 280px;
	clear: right;
	height: 600px;	
}



/* Styles for the Story section */

section h2{
	font-size: 200%;
	color: black;
	text-align: center;
	font-family: sans-serif;
	margin-bottom: 10px;
	margin-top: 10px;
	border-radius: 4px;
	padding-top: 10px;
	
	
}

section{
	background-image: url(marbel2.jpg);
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 4px;
	margin-right: 300px;
	height: 600px;
}

section article p{
	margin: 20px;
}

section article ol{
	font-size: 150%;

}

#freeclock{
	text-align: center;
	font-size: 200%;
	}
	
footer address { 
	color: black; 
	font-size: 80%; 
	font-style: normal; 
	padding-top: 10px; 
	text-align: center; 
}

audio, video{
	background-color: white;
	display: block;
	margin: 5px auto;
	text-align: center;
	width: 75%;
}
