/* Fallback stylesheet for the homepage. The main visual styles are also defined inline in index.html, but this file keeps the page from breaking when the browser requests it. */
:root {
  --bg: #09090d;
  --panel: #111827;
  --text: #f8f8ff;
  --muted: #b7bfd6;
  --accent: #22e6ff;
  --secondary: #8b45ff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', Arial, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.hidden,
[hidden] {
  display: none !important;
}

main {
  display: block;
}
