* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: #f5f2ec;
}

body {
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f5f2ec;
}

.landing {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .page {
    overflow: auto;
  }

  .landing {
    width: 100%;
    height: auto;
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
  }
}
