/* 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:#808000;
    color:#FFFFFF;
    font-family: monospace, Courier New;
    margin:20px;
	
}


#container {
	background: #2F4F4F;
    /*width:800px;*/
    width:90%;
    max-width:800px;
    margin:auto;
    padding:30px;
}

ul{
  list-style:none;
    padding-left:0px;
    
}

nav a{
    color:#F0FFFF;
    display: inline-block;
    background:#808000;
    padding:8px;
    margin:5px;
    text-decoration:none;
    border-radius:10px;
}

nav a:hover{
    color:#03c6fc;
    background:#008B8B;
}

figure{
    margin:0px;
}

figure img{
width: 100%;
}

li{
    display:inline;

}

figcaption,footer {
    font-size:0.50em;
}








