#home {
  position: relative;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100vh;
  background-color: var(--black);
  overflow: hidden;
}

#home > h1 {
  font-family: 'IM FELL English', serif;
  font-weight: 900;
  font-style: normal;
  font-size: 5rem;
  font-variant: normal;
  color: var(--white);
  text-shadow: 0px 0px 3px var(--box_glow);
  padding: 0;
  margin: 0;
}

#top_title {
  width: 240px;
  display: flex;
  justify-content: space-between;
}

#left_title p {
  font-family: Gazpacho-Light;
  font-weight: 100;
  font-style: normal;
  font-size: 1rem;
  color: var(--white);
  text-shadow: 0px 0px 3px var(--box_glow);
  padding: 0;
  margin: 0;
}

.home-bg-layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
  z-index: 0;
  pointer-events: none;
}

.home-bg-layer.is-active {
  opacity: 1;
}

#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(35, 31, 32, 0.45) 0%,
    rgba(35, 31, 32, 0.58) 55%,
    rgba(35, 31, 32, 0.72) 100%
  );
  z-index: 1;
  pointer-events: none;
}

#home > :not(.home-bg-layer) {
  position: relative;
  z-index: 2;
}

#intro {
  background-color: var(--white);
  height: 60vh;
}

#intro > .section_content >p {
  font-family: Gazpacho-Light;
  font-weight: 100;
  font-size: 1rem;
  color: var(--black);
}

.quote {
  height: 90vh;
  width: 100%;
  background-color: var(--white);
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote p{
  width: 50%;
  text-align: center;
  font-family: Gazpacho-Light;
  font-weight: 100;
  font-size: 1rem;
}

#about {
  position: relative;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  background-color: var(--black);

}

@media (prefers-reduced-motion: reduce) {
  .home-bg-layer {
    transition: none;
  }
}