@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&family=Raleway&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html body {
  background-image: url(/background-dark.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  text-align: center;
}

html body h1 {
  font-size: 58px;
  font-family: 'Playfair Display', serif;
}

@media (max-width: 1200px) {
  html body h1 {
    font-size: 48px;
  }
}

@media (max-width: 800px) {
  html body h1 {
    font-size: 40px;
  }
}

html body h2 {
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

@media (max-width: 1200px) {
  html body h2 {
    font-size: 20px;
  }
}

@media (max-width: 800px) {
  html body h2 {
    font-size: 18px;
  }
}

html body .social {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

html body .social .facebook {
  margin-right: 2rem;
}

html body .social a {
  font-family: 'Raleway', sans-serif;
  color: white;
  text-decoration: none;
}

html body .social a:hover {
  text-decoration: underline;
}
/*# sourceMappingURL=style.css.map */