#feature {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#feature #spacer {
  flex: 1;
}

/* Title */
  #feature #title {
    max-width: calc(100vw - 150px);
    display: flex;
    flex-direction: row;
    column-gap: 50px;
    text-align: center;
    align-items: center;
  }

  #feature #title p {
  font-size: clamp(20px, calc(10vw - 20px), 70px);
  max-width: 800px;
  color: var(--color-primary-brown);
  font-weight: bold;
  }

  #feature #title img {
    width: 300px;
    filter: drop-shadow(0 0 30px hsl(from var(--color-primary-orange) h s calc(l - 20)));
  }

#feature #scroll-text {
  padding-top: 100px;
  font-size: 25px;
  font-weight: bold;
  color: var(--color-text-alt);
  opacity: 1;
  transition: opacity linear;
}