body {
  margin: 0;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: left center;
  z-index: 0;
}

.background-gradient {
  background: rgba(0, 0, 0, 0.4);
  background: linear-gradient(0deg, rgba(255,255,255,0) 70%, rgba(0,0,0,0.5) 100%);
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.teaser-title {
  color: #d9d9d9;
  font-family: 'Arvo', Serif;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
  text-shadow: 3px 3px 10px black;
  margin-top: 32px;
  position: relative;
}

@media screen and (min-width: 576px) {
  .teaser-title {
    font-Size: 34px;
  }
}

@media screen and (min-width: 768px) {
  .background-gradient {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.5) 100%);
  }

  .teaser-title {
    font-Size: 44px;
    position: absolute;
    right: 64px;
    top: 32px;
    text-align: initial;
  }
}