<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

@media (max-width: 768px) {
  html {
    font-size: 90%;
  }
}

.full-img {
  width: 100%;
}
.section-hero {
  position: relative;
}

.primary-heading {
  font-size: 3rem;
}

.secondary-heading {
  font-size: 2rem;
}

.basic-text {
  font-size: 1.2rem;
}

.section-hero .primary-heading {
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 3vw;
  text-align: center;
  width: 80%;
}

@media (max-width: 768px) {
  .section-hero img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

.info-text {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .info-text {
    width: 90%;
    text-align: left;
  }
}
</pre></body></html>