/* 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 {
	font-family: "Lucida Console", "Lucida Sans Typewriter", Geneva,
    sans-serif;	
    background: #aae3d5;
    color: rgb(110, 88, 112);
}


div#container {
	/*border: 1px solid black;*/
    width:900px; 
    margin:auto;
    margin-top:50px;
    background: #fcf1c2;
    padding: 20px;

}


header{
    
    font-family: Impact;
    text-align: center;
}


footer{
    
    font-size: 0.8em;
    text-align: right;
}


header, footer{
    background: #95e0ed;
    padding: 15px;
}

main{
    padding: 20px;
    text-shadow: 2px -2px 5px pink
}


