@import url("https://fonts.googleapis.com/css2?family=Mali:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html body {
  background-color: rgb(141, 205, 233);
  background-image: url("../images/homepage_background_lg.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  min-height: 100vh;
}
@media (min-width: 1200px) {
  html body {
    background-image: url("../images/homepage_background_xl.webp");
  }
}
@media (min-width: 1920px) {
  html body {
    background-image: url("../images/homepage_background_xxl.webp");
  }
}
html p {
  font-size: clamp(18px, 4vw, 26px);
  font-family: "Mali", serif;
  font-weight: 500;
  font-style: normal;
  color: rgb(45, 45, 45);
}
html .sfru_title {
  width: 80%;
  min-width: 200px;
  max-width: 560px;
  display: block;
  margin: 40px auto;
}
html .text-blurb {
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 40px;
}
html .btn {
  --bs-btn-bg: #d33c62;
  --bs-btn-border-color: #d33c62;
  --bs-btn-hover-bg: #7f243b;
  --bs-btn-hover-border-color: #7f243b;
  margin-bottom: 50vw;
  font-family: "Mali", serif;
  font-weight: 500;
  font-style: normal;
  padding: 0.75rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 4vw, 26px);
}
html .btn i {
  font-size: 2rem;
  margin-left: 1.25rem;
}

.btn:hover {
  animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}/*# sourceMappingURL=styles.css.map */