/* 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');
@import url('https://fonts.googleapis.com/css?family=Lato|PT+Serif:700i');
* { box-sizing: border-box; }

body {
  background-color: white;
  font-family: "Lato", sans-serif;
  padding: 5px 25px;
  font-size: 18px;
  margin: 0;
  color: #444;
}

h1 {
  font-family: "PT Serif", serif;
  font-size: 32px;
}
#wrapper {
  max-width:600px;
  margin:  0 auto;
  width: 100%;
  padding: 10px;          
}
.ctr {
	text-align: center;
}