* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: freight-sans-pro, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  background-color: #504c47;
}

.container {
  width: 100%;
  max-width: 1200px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 10%;
  background-color: #ffffff;
  text-align: center;
  position: relative;
}

h1 {
  font-size: 4rem;
  line-height: 1;
  font-family: hwt-artz, sans-serif;
  font-weight: 700;
  position: relative;
  top: 7rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: rgba(0, 0, 0, 0.25) 0px 5px 10px;
}

h2 {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 0;
  font-family: hwt-artz, sans-serif;
  font-weight: 700;
}
h2:last-child {
  margin-bottom: 2rem;
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

main {
  padding: 2rem 0;
}

figure {
  width: 66.7%;
  margin: 0 auto 2rem;
}
figure img {
  border-radius: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px 0px, rgba(0, 0, 0, 0.09) 0px 4px 2px 0px, rgba(0, 0, 0, 0.09) 0px 8px 4px 0px, rgba(0, 0, 0, 0.09) 0px 16px 8px 0px, rgba(0, 0, 0, 0.09) 0px 32px 16px 0px;
  width: 100%;
  height: auto;
}

.info {
  margin-top: 2rem;
}
.info p {
  text-align: justify;
  text-wrap: balance;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

footer {
  padding-bottom: 2rem;
}
footer p {
  text-align: center;
  font-style: italic;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 3.5rem;
    top: 4.5rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  .info p {
    font-size: 1.5rem;
  }
  .container {
    width: 100%;
    padding: 0 10%;
  }
  main {
    width: 80%;
    padding: 0;
    margin: 0 auto;
  }
  main figure {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */