@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@400;600;700;800&family=Fira+Mono:wght@400&display=swap');

body {
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: 400;
}

code, pre, kbd, samp {
  font-family: 'Fira Mono', monospace;
  font-weight: 500;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #222222;
    color: #e0e0e0;
  }
  a {
    color: #7eb8f7;
  }
  a:visited {
    color: #b08ff7;
  }
}



