/*
  This file is used for all of your global styles and CSS variables.
  Check here https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties for more info on using CSS variables.
*/
:root {
    --font-family: sans-serif;
    --primary-color: #6200ea;
    --secondary-color: white;
}

html, body {
  font-family: var(--font-family);
  padding: 0;
  margin: 0;
  background: #181818;
}

@media (prefers-color-scheme: dark) {
  html,
  body {
    background: #181818;
  }
}

@media (prefers-color-scheme: light) {
  html,
  body {
    background: white;
    color: black;
  }

}
