#home {
  position: relative;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  text-align: center;
  height: 100dvh;
  background-color: var(--black);
  overflow: hidden;
}

.left_box {
  flex: 1;
  height: 10vh;
}

.right_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 2rem;
  flex: 1;
  min-height: fit-content;
  border-left: 1px solid var(--white);
}

.right_box> p {
  font-family: "Fira Sans", sans-serif;
  font-size: 1rem;
}

.center_box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem;
  flex: 1;
}



.center_box > 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;
}

.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: 80dvh;
  min-height: fit-content;
}

#intro_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
}

#intro_text > p {
  font-size: 1rem;
  color: var(--black);
  font-family: "Fira Sans", sans-serif;
  font-weight: 300;
}

#intro > .section_content > img {
  max-width: 150px;
  width: 20dvh;
  margin: 2rem;
}

.quote {
  height: 90dvh;
  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: 100dvh;
  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;
  }
}

@media (max-width: 500px) {
  .section_content {
    padding: 2rem;
    flex-direction: column;
  }

  .center_box > h1 {
    font-size: 4rem;
  
  }

  .right_box {
    padding-left: 1rem;
  }

  .right_box > p {
    font-size: .7rem;
    text-align: left;
    margin: .1rem;
  }

  #intro {
    height: fit-content;
  }
}

@media (max-width: 350px) {
  .section_content {
    padding: 2rem;
    flex-direction: column;
  }

  #intro > .section_content > img {
    margin: 1rem;
    width: 15dvh;
  }
}