html {
  font-size: 10px; /* px means "pixels": the base font size is now 10 pixels high */
  font-family: "Open Sans", sans-serif; /* this should be the rest of the output you got from Google Fonts */
  background-color: #a86a24;
}

body {
  width: 600px;
  margin: 0 auto;
  background-color: #4e3329;
  padding: 0 20px 20px 20px;
  border: 5px solid black;
  color: #edd886;
}

h1 {
  margin: 0;
  padding: 20px 0;
  font-size: 60px;
  text-align: center;
  text-shadow: 3px 3px 1px rgb(173, 66, 66);
}

p,
li {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
}

img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

a {
  outline-color: transparent;
}

a:link {
  text-decoration: none;
  color: #a86a24;
}

a:visited {
  color: #a5c300;
}

a:focus {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  background: #edd886;
  color: #4e3329;
}

a:active {
  background: #a86a24;
  color: #cdfeaa;
}
