.header-container {
  box-sizing: border-box;
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.header-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: -1;
}

.header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.header-txt h1 {
  color: var(--white);
  font-family: 'Futura LT Heavy';
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  text-align: center;
}

.txt-bottom {
  box-sizing: border-box;
  position: absolute;
  left: 0px;
  bottom: 25px;
  display: flex;
  width: 100%;
  padding: 0px 25px;
  justify-content: space-between;
}

.txt-bottom h2 {
  font-family: 'Futura LT light';
  color: var(--white);
  font-size: clamp(0.5rem, 0.5rem + 0.5vw, 2.75rem);
}