:root {
  color-scheme: dark;
  background: #07100f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #07100f;
}

.world {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #07100f;
}

video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  position: fixed;
  left: 24px;
  bottom: 20px;
  margin: 0;
  color: rgba(215, 242, 220, .45);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: lowercase;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 600px) {
  h1 { left: 15px; bottom: 14px; font-size: 9px; }
}
