/* Design tokens, reset and base typography shared by every page. */

:root {
  --accent: #7C4DFF;
  --img-filter: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #E3E3E3;
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}
