/************************* Estilos gerais ****************************/

* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Alice", serif;
  background-image: url("./assets/bg-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: rgba(244, 160, 104, 0.5);
}

/************************* Estilos da página ****************************/
#page {
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
  width: 800px;
  height: auto;
  padding: 24px;
  margin: 50px auto;
  border-radius: 24px;
  background-color: #f0e8c2;
}

#page img {
  border-radius: 24px;
  overflow: hidden;
}

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

#page section h1 {
  font-size: 40px;
  line-height: 140%;
  font-weight: 400;
}

#page section h2 {
  font-size: 24px;
  line-height: 150%;
  font-weight: 400;
}

#page section ul {
  padding-left: 24px;
  margin-bottom: 24px;
}

#page section p,
#page section ul li {
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  color: #573a37;
}

#page #about p + p {
  margin: 12px 0;
}
