:root {
  color-scheme: dark;
  --background: #010006;
  --text: #f4f7fb;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  touch-action: none;
}

body {
  position: relative;
  overflow: hidden;
  background: var(--background);
  color: var(--text);
  cursor: grab;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body.is-grabbing {
  cursor: grabbing;
}

.starfield {
  position: fixed;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
}
