/********* HTML Reset *********/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
	
/********* My CSS *********/

body{
	background-color: #50E000;
	font-family: sans-serif;
}

#wrapper{
	background-color: #FFFFFF;
	width: 80%;
	margin: auto;
}

p{
	margin: 4% 0;
}

h1{
	margin-top: 5%;
	margin-bottom: 3%;
	font-family: cursive, sans-serif;
	font-size: 2.8em;
	text-align: center;
	color: white;
}

h2{
	text-align: center;
	padding: 3% 0;
	color: #000000;
	font-size: 1.3em;
}



.nav-item{
	display: inline-block;
	padding: 0 4%;
	font-size: 1.2em;
	float: left;
	text-align: center;
}

.nav-item a:link, li a:visited{
	color: white;
	text-decoration: none;
}

.nav-item a:hover, li a:active{
	color: white;
	text-decoration: none;
}

nav{
	background-color: black;
	padding: 2%;
	width: 96%;
	overflow: hidden;
}

.dropdown{
	float: left;
	overflow: hidden;
	background-color: #000000;
}

.dropdown .dropdown-link{
	font-size: inherit;  
	border: none;
	outline: none;
	color: white;
	padding: 4% 0%;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}

.dropdown-content{
	background-color: #000000;
	display: none;
	min-width: 250px;
	z-index: 1;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a{
	float: none;
	color: white;
	text-decoration: none;
	display: inline;
	padding: 0 4%;
	margin: 1%;
	font-size: 1.2em;
	text-align: left;
}

.dropdown-content li{
	position: relative;
}

.dropdown-content a:hover{
	background-color: #505050;
}

.dropdown:hover .dropdown-content{
	display: block;
}
	


header{
	padding: 3%;
	width: 90%;
}

header a{
	color: black;
	text-decoration: none;
}

#header{
	background: #000000;
}

#main-content{
	width: 96%;
	padding: 2% 0;
	margin: auto;
	font-family: sans-serif;
	line-height: 1.3;
	letter-spacing: 0.4px;
}
		
footer{
	width: 96%;
	padding: 2%;
	background-color: black;
	color: white;
	text-align: center;
}

article{
	padding: 2% 0;
}


/****LINKS****/

h2 a{
	text-decoration: none;
}

p a:link, tr a:link{
	color: black;
	text-decoration: underline;
}

p a:visited, tr a:visited{
	color: black;
}

p a:hover, tr a:hover{
	color: #0090F0;
}

p a:active, tr a:active{
	color: #0090F0;
}

td a:link, td a:visited, td a:hover, td a:active{
	text-decoration: none;
}

/****TABLE****/
table{
	border-collapse: collapse;
	width: 100%;
	margin: auto;
	border: 1px solid black;
}

thead td, tbody td, tfoot td{
	text-align: center;
	border: 1px solid black;
	padding: 2%;
}

thead td{
	font-size: 1.5em;
	padding: 3%;
}

tfoot{
	font-size: 0.8em;
}




/*********STORY**********/

#story{
	border: 2px solid black;
	margin: auto;
}


















