* {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
}

.site-shell {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #02050d;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100vh;
  object-fit: cover;
  object-position: center top;
}

@media (max-aspect-ratio: 3 / 2) {
  .hero-image {
    height: 100vh;
    width: auto;
    max-width: none;
  }
}
