.hero {
  position: relative;
}

.hero__image {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.25);
}

.hero__caption {
  position: absolute;
  right: 15%;
  top: 30%;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.hero__heading {
  font-size: 2.25rem;
  line-height: calc(2.5 / 2.25);
  text-transform: uppercase;
  font-family: "VAG Rounded", Arial, sans-serif;
  font-weight: 900;
  -webkit-text-stroke-width: 3px;
  margin-block-end: 0.5rem;
}

.hero__subheading {
  margin-block-end: 0.5rem;
  color: rgb(241, 241, 241);
}

.hero__cta {
  display: block;
  width: max-content;
  margin-inline: auto;
}

.hero__scroll-cta {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
}

.hero__scroll-cta:hover {
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) {
  .hero__heading {
    font-size: 3.75rem;
    line-height: 1;
    -webkit-text-stroke-width: 4px;
    margin-block-end: 1.5rem;
  }

  .hero__subheading {
    font-size: 1.5rem;
    line-height: calc(2 / 1.5);
    margin-block-end: 1.5rem;
  }
}
