html,
body,
main {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;

  @media screen and (min-width: 430px) {
    height: 100vh;
  }
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;

  pointer-events: none;

  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.main-image__desktop {
  background-image: url("soon-image-1920.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main-image__tabletop {
  display: none;
  background-image: url("soon-image-768.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 900px) {
  .main-image__desktop {
    display: none;
  }

  .main-image__tabletop {
    display: block;
  }
}

/* SEO: visually hidden text for screen readers and search engines */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
