* {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-family: "Alice", serif;
  line-height: 150%;
  color: #573a37;
}

body {
  background-color: #573824;
  /* primeiro layer = overlay marrom semi-transparente, depois a imagem */
  background-image:
    linear-gradient(rgba(87,56,36,0.3), rgba(87,56,36,0.3)),
    url('images/bg-image.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: soft-light; /* tente também: overlay, soft-light */
  min-height: 100vh;
}

#page {
  box-sizing: border-box;
  width: 800px;
  padding: 24px;
  background-color: #f0e8c2;
  border-radius: 24px;
  margin: 48px auto 28px;
}

img {
  border-radius: 16px;
  height: 400px;
}

main {
  padding: 24px;
}

section + section {
  margin-top: 24px;
}

#about p + p {
  margin-top: 12px;
}

h1,
h2 {
  color: #291b1a;
  margin-bottom: 4px;
}

h1 {
  line-height: 140%;
  font-size: 40px;
  margin-bottom: 4px;
}

h2 {
  font-size: 24px;
}

ul {
  padding-left: 24px;
}

footer {
  color: #f0e8c2;
  text-align: center;
  padding-bottom: 48px;
}

footer img{
    height: 16px;
    width: 16px;
    vertical-align: middle;
}
