* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  overflow: hidden;
  color: #fff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.page {
  display: grid;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  background: #000;
}

.coming-soon-video {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #000;
  object-fit: contain;
}

@supports (height: 100dvh) {
  .page {
    min-height: 100dvh;
  }

  .coming-soon-video {
    height: 100dvh;
  }
}
