/* 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: rgb(247, 235, 217);
  background-size: 100%;
  font-family: "Open Sans", sans-serif;
  padding: 5px 25px;
  font-size: 17px;
  margin: 0;
  color: #000;
}

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

a {
  text-decoration: none;
}

h1 {
  font-family: "Merriweather", serif;
  font-size: 32px;
  text-align: center;
  color: rgb(205, 127, 74);
}

h3 {
  font-family: "avenir", sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: rgb(97, 48, 35);
}

p {
	text-align: justify;
}

hr {
	border: 2px solid rgb(193, 149, 95);
	margin: 2em 0;
}