.background-image {
  height: 100vh;
  object-fit: cover;
  width: 100%;
  position: fixed;
}

.background-image-mobile {
  display: none;
  height: 100vh;
  object-fit: cover;
  width: 100%;
  position: fixed;
}

.landing-text-div {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: radial-gradient(50% 25% at 50% 43%, black, transparent);
  /* background: radial-gradient(50% 25% at 50% 38%, black, transparent); */
}

.landing-text {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  width: 50%;
  line-height: 140%;

  margin-top: 40px;
}

@media only screen and (max-width: 850px) {
  .landing-text {
    width: 70%;
  }
}

@media only screen and (max-width: 800px) {
  .background-image {
    display: none;
  }

  .background-image-mobile {
    display: block;
  }
}

@media only screen and (max-width: 600px) {
  .landing-text {
    width: 85%;
  }

  .landing-text-div {
    background: radial-gradient(60% 30% at 50% 38%, black, transparent);
  }
}

.separator {
  width: 100vw;
  height: 1px;
  background-color: rgba(50, 50, 50, 0.8);
}

.separator-top {
  margin-top: 80px;
}

.separator-bottom {
  margin-bottom: 80px;
}

@media only screen and (max-width: 1350px) {
  .separator-top {
    margin-top: 60px;
  }

  .separator-bottom {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .separator-top {
    margin-top: 50px;
  }

  .separator-bottom {
    margin-bottom: 50px;
  }
}
