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

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "-apple-system", "BlinkMacSystemFont", '"Segoe UI"', "Roboto", '"Helvetica Neue"', "Arial", "sans-serif", '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"';
  color: #312a11;
}

.content-wrapper {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(270deg, #efe7d4 0%, #fff 100%);
  display: grid;
  grid-template-rows: max-content auto max-content;
}

header {
  display: flex;
  padding: 24px;
  justify-content: center;
}
header .logo {
  width: 200px;
  height: auto;
}

main {
  padding: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
main .hearts {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 65%;
  opacity: 0.9;
}
main .content {
  max-width: 1000px;
  position: relative;
  z-index: 100;
}
main .intro-text h4 {
  font-weight: 400;
}
main .intro-text h3 {
  font-weight: 500;
}
main .big-title {
  font-size: 80px;
  text-transform: uppercase;
  color: #4b411c;
  font-weight: 600;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  main .big-title {
    font-size: 48px;
  }
}
main .main-text {
  margin: 56px 0;
}
main .main-text h2 {
  font-size: 32px;
  font-weight: 400;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  main .main-text h2 {
    font-size: 24px;
  }
}
main .main-text p {
  margin-top: 24px;
  line-height: 150%;
}

footer {
  padding: 24px;
  text-align: center;
}
footer .socials {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
footer .socials li {
  margin: 0 6px;
}
footer .socials a {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #aa8936;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
footer .socials a svg {
  color: #fff;
}
footer .socials a:hover, footer .socials a:focus {
  background-color: #9b7a28;
}/*# sourceMappingURL=main.css.map */