/* Fonts from Google Fonts - more at https://fonts.google.com */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700');

body {
  background-color: #ccccff;
  font-family: "Merriweather", serif;
  padding: 5px 25px;
  font-size: 18px;
  margin: 0;
  color: #444;
}
header {
  background-color: #9999ff;
  border-bottom: 1px solid #9999ff;
  margin: 50px auto;
  display: inline-block;
  padding: 10px;
  
}

#headline{
	margin-top: 10px; 
	}
h1 {
  font-family: "Merriweather", serif;
  font-size: 32px;
  padding-top: 100px;
  width: 100%;
  text-align: center;
}
h2 {
  font-family: "Merriweather", serif;
  padding-top: 100px;
  width: 100%;
  text-align: center;
}

#wrapper{
width: 100%;
max-width: 900px;
margin: 0 auto;
}
img{width: 100%}



@media (min-width: 800px){
#headline{
	margin-top: 50px; 
	}
	header ul li{
		display: inline-block;
		padding: 10px;
	}

	body{ margin-left: 100px; }

}

@media (min-width: 900px){
header {
		left: calc( 50% - 450px );
  		position: fixed;
	}
		body{ margin-left: 400px; }

	header ul li{
		display: block;
		padding: 10px;
	}
		
}