@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Sen:wght@400;700;800&display=swap');

.home {
  min-height: 100vh;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 104px;
}

.home-sections {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 90px;
  min-height: 100vh;
}

@media (max-width: 1080px) {
  .home,
  .home-sections {
    gap: 64px;
  }
}

.home-bg {
  z-index: -1;
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 90%;
  height: 100%;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-heading {
  font-family: 'Sen';
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section-subheading {
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 400;
}
