/* Increase base font size for the whole site */
html {
  font-size: 24px; 
}

/* Brute-force high-contrast overrides for Minima 'auto' skin */

@media (prefers-color-scheme: light) {
  body, .post-content p, .post-content li, .post-content td {
    color: #1a1a1a !important;
  }
  h1, h2, h3, h4, h5, h6 {
    color: #000000 !important;
  }
  .site-title, .site-title:visited {
    color: #1a1a1a !important;
  }
  a {
    color: #0040c1 !important;
  }
  a:visited {
    color: #5500a1 !important;
  }
  a:hover {
    color: #002080 !important;
  }
}

@media (prefers-color-scheme: dark) {
  body, .post-content p, .post-content li, .post-content td {
    color: #d8d8d8 !important;
  }
  h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
  }
  .site-title, .site-title:visited {
    color: #e0e0e0 !important;
  }
  a {
    color: #8cacff !important;
  }
  a:visited {
    color: #c5a3ff !important;
  }
  a:hover {
    color: #aabfff !important;
  }
}
