/* Basic CSS resets -- leveling slight inconsistencies in browsers */
html, body {
	margin:0px;
	padding:0px;
	height:100%;
}

html {
		/* Standard text-settings below */
	font-size: 1em;
    line-height: 1.4em;
}




body {
	background: #78e395;
	color: #1a6b12;
	font-family: Optima, Arial Narrow, Calisto MT;
	margin: 5px;
	
}

nav ul {
			list-style: none;
			padding-left: 0px;
}

nav li {
			display: inline;
}

nav a {
	color: #1e7296;
	margin:5px;
	text-decoration: none;
	font-size:1.5em;
	display: inline-block;
	background:#78e395;
	padding:8px;
}

nav a:hover {
			color:black;
			background:yellow;
}


p a {
	
}

h1,h2 {
			font-family:Impact;
			
}

figure {
			margin: auto;
			background:white;
			padding:10px;
}

figure img {
			margin: 0px;
}

figcaption,footer {
			font-size:10px;
			
	
}

figcaption a {
			color: #1e7296;
}

figcaption a:hover {
			color:black;
}

img {
		width: 100%;
}

#container {
					border: 1px solid rgb(0, 0, 0);
					border-radius:20px;
					background: #c3c8c9;
					width: 90%;
					max-width:1080px;
					margin: auto;
					padding:20px
					
}




