:root {
  color-scheme: dark;
  --bg: #000;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
}

body {
  overflow: hidden;
}

.scene {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.stars,
.vignette,
.globe-root {
  position: absolute;
  inset: 0;
}

.stars {
  display: block;
  background-image: radial-gradient(circle, rgba(226, 232, 240, 0.48) 0 1.15px, transparent 1.8px);
  background-position: center center;
  background-size: 76px 76px;
  opacity: 0.7;
}

.vignette {
  display: none;
}

.globe-root {
  z-index: 1;
}

.globe-root canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.load-error {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(235, 241, 244, 0.86);
  font: 600 16px/1.5 "Segoe UI", sans-serif;
  text-align: center;
  white-space: pre-line;
}
