.header {
  width: 100%;
  height: 20em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: height 0.3s ease-in-out;
}

.header img {
  object-fit: cover;
  filter: brightness(40%);
  width: 100%;
  min-width: 400px;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.header-content {
  color: #FFFFFF;
  text-align: center;
  margin-inline: auto;
  max-width: 80%;
}

.header-content h2 {
  margin-top: 2em;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  text-transform: uppercase;
}

.header-content p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  text-transform: capitalize;
}
