/* Page background before the Vue bundle mounts. */
:root {
  --boot-bg: #ffffff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --boot-bg: #141312;
  }
}

html,
body {
  margin: 0;
  background: var(--boot-bg);
}
