.preview-backdrop {
  background-image: url("/images/coming-soon.webp");
  background-position: bottom left 47.5%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #2a55c6;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  color: white;
}

.preview-backdrop .about-us-link {
  cursor: pointer;
  position: absolute;
  top: 25px;
  left: 5%;
  text-decoration: none;
  width: 30px;
  aspect-ratio: 1;
  color: #fff;
  transition: color 0.3s, transform 0.3s;
}

.preview-backdrop .about-us-link:hover {
  color: #ffcc00;
  transform: scale(1.1);
}

.preview-backdrop img {
  width: 150px;
  margin-top: 25px;
  margin-bottom: 100px;
}

.preview-backdrop span {
  font-size: 1rem;
  font-weight: 300;
}

.preview-backdrop h1 {
  font-size: 3rem;
  line-height: 3rem;
}

@media only screen and (orientation: landscape) and (height < 700px) {
  .preview-backdrop {
    background-position: top left 47.5%;
  }

  .preview-backdrop img {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

@media only screen and (width >= 1005px) {
  .preview-backdrop {
    background-position: top 25% center;
  }

  .preview-backdrop .about-us-link {
    top: 50px;
    left: 5%;
    width: 50px;
  }

  .preview-backdrop img {
    margin-bottom: 50px;
  }

  .preview-backdrop span {
    font-size: 1.25rem;
  }

  .preview-backdrop h1 {
    font-size: 6rem;
    line-height: 6rem;
    margin-top: -5px;
  }
}
