:root {
  color-scheme: dark;
  --page-bg: #090b0c;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--page-bg);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
}

.coming-soon {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--page-bg);
}

.hero-art {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 768px) {
  .hero-art {
    width: 100vw;
    height: 100dvh;
    object-fit: cover;
    object-position: center center;
  }
}
