.hero-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-container img {
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-headline {
    z-index: 1;
    padding: 1rem;

    border-radius: 0.7rem;
    background-color: #00001850;
    border-width: 0.5px;
    border-top-color: #ffffff40;
    border-bottom-color: #49494940;
    border-left-color: #8f8f8f40;
    border-right-color: #8f8f8f40;
    border-style: solid;

    backdrop-filter: blur(7px);

    font-size: 7em;
    text-align: center;
    margin-bottom: 9rem;
}

.down-arrow {
  position: absolute;
  top: calc(100vh - 4rem);
  left: calc(50% - 14px);
  width: 0;
  height: 30px;
  border: 2px solid;
  border-radius: 2px;
  animation: jumpInfinite 1.5s infinite;
}

.down-arrow:after {
  content: " ";
  position: absolute;
  top: 12px;
  left: -8px;
  width: 16px;
  height: 16px;
  border-bottom: 4px solid;
  border-right: 4px solid;
  border-radius: 4px;
  transform: rotateZ(45deg);
}

@keyframes jumpInfinite {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 20px;
  }
  100% {
    margin-top: 0;
  }
}
