* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
}

.landing {
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  background-image: url("/assets/innovative-lifts-existing-page.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Keeps a readable page title for search/accessibility without showing extra text. */
h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-aspect-ratio: 4 / 3) {
  .landing {
    background-size: contain;
    background-color: #111;
  }
}
