/* So the HTML5 structural tags work in older browsers */
/*
 Holly Butler 
 Style sheet for the project pages.
*/
article, aside, figure, footer, header, nav, section {
    display: block;
}
/* the styles for the elements */
* {
	margin: 0;
	padding: 0;
}
html {
	background-color: #000000;
}
body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 87.5%;
    width: 800px;
    margin: 0 auto;
    border: 3px solid #DAE098;
	border-radius: 40px;
    background-color: white;
}

/* the styles for the header */
header {
	padding: 1.5em 2em;
	background-color: white;
	border-radius: 40px;
}
header h1 {
	font: font-weight: 600;
	font-size: 300%;
	color: #000000;
	font-style: bold;
	float: right;
	text-shadow: 2px 2px 2px #B4B19F; 
}
header h2 {
	font-style: bold;
}

.shadow {
	text-shadow: 2px 2px 2px #20B2AA;
}
/* the styles for the navigation bar */
nav {
	clear: both;
}
nav ul {
	list-style: none;
	padding: 1em 1em;       /* padding above and below li elements */
	background-color: #20B2AA
	}
nav li {
	display: inline; '
}
nav a {
	padding: 1em 2em;
	color: #DAE098;
	font-weight: bold;
	border-right: 2px solid white; 
}

nav a.current { color: white; }

/* the styles for the section */
section {
	clear: left;
	padding: 0 20px;
	width: 525px;
	float: left;
	border-top: 3px solid #DAE098;
	}
section h1 {
	color: #191970;
	font-size: 150%;
	text-shadow: 2px 2px 2px #B4B19F; 
	padding: .5em 0 .25em;
}
section h2 {
	font-size: 120%;
	padding-bottom: .25em;
	text-shadow: 2px 2px 2px #B4B19F; 
	padding-top: .5em;
}
section p {
	padding-bottom: .5em;
}

section ul {
	padding: 0 0 1.5em 1.25em;
	list-style-type: circle;
}
section li {
	padding-bottom: .35em;
}


aside {
	width: 215px;
	float: right;
	padding-left: 20px;
	border-top: 3px solid #DAE098;
}
aside h1 {
	color: #191970;
	font-size: 150%;
	padding: .5em 0 .25em;
}
aside h2 {
	font-size: 120%;
	padding: .5em 0 .25em;
	text-shadow: 2px 2px 2px #B4B19F; 
}
aside img {
	float: right;
	padding: 10px;
	padding-top: 12em;
}


/* the styles for the footer */
footer {
	border-top: 3px solid #DAE098;
	clear: both;
}
footer p {
	padding: 1em 0;
	text-align: center;
}
