@import url('https://cdn.simplecss.org/simple.min.css');
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
  font-family: 'Anonymous Pro', sans-serif;
  font-feature-settings: "zero";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* Light theme overrides */
@media (prefers-color-scheme: light) {
	:root {
    --accent: rgb(67, 69, 131);
  }
  body {
    background-color: #f5f5ff;
  }

  a {
    border-bottom: 1px dashed rgb(90, 90, 122);
  }
}

/* Dark theme overrides */
@media (prefers-color-scheme: dark) {
	:root {
    --accent: rgb(150, 153, 220);
  }
  a {
    border-bottom: 1px dashed rgb(120, 120, 170);
  }
}

a {
  text-decoration: none;
}
