:root {
  color-scheme: light;
  --ink: #071d41;
  --muted: #d9dee8;
  --paper: #f8f9fb;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95), transparent 42rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.stage {
  position: relative;
  display: grid;
  width: 100vw;
  height: 100vh;
  min-height: 32rem;
  place-items: center;
}

#logo-scene {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}

#logo-scene:active {
  cursor: grabbing;
}

.fallback-logo {
  position: absolute;
  width: min(76vw, 58rem);
  height: auto;
  pointer-events: none;
  visibility: hidden;
}

body.no-webgl #logo-scene {
  display: none;
}

body.no-webgl .fallback-logo {
  visibility: visible;
}
