/* Render-blocking baseline that prevents a light-theme flash before app CSS loads. */
:root {
  color-scheme: dark;
  background: #080d14;
}

html {
  min-height: 100%;
  background: #080d14;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: #f2f6f9;
  background: #080d14;
}
