#hero {
  min-height: 60vh;
}

.wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url("../assets/hero.png") no-repeat;
  background-position: center center;
  background-size: cover;
  filter: brightness(20%);
  z-index: -1;
}

.wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-align: center;
  color: var(--text-secondary);
  z-index: 10;
}


#hero .wrapper h1 {
  color: var(--text-primary);
  z-index: 5;
  margin-top: 5rem;
  white-space: no-wrap;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
}

#hero .wrapper p {
  font-size: clamp(.9rem, 1vw, 1.5rem);
  white-space: no-wrap;
}

#hero .wrapper button {
  padding: .5rem 2rem;
  background: var(--text-primary);
  color: var(--text-secondary);
  border-radius: var(--border-radius);
  box-shadow: 2px 2px 5px var(--bg-primary);
  width: fit-content;
  margin: auto;
  margin-top: 2rem;
}