
/*
Fix dark theme problem with transparency in images
 https://github.com/pydata/pydata-sphinx-theme/issues/918
*/
html[data-theme="dark"] img {
    filter: none;
}
html[data-theme="dark"] .bd-content img:not(.only-dark):not(.dark-light) {
    background: unset;
}

/*Copied from https://github.com/choldgraf/choldgraf.github.io/blob/main/_static/custom.css */
/* Theme over-rides */
h1, h2, h3, h4, h5 {
    color: var(--pst-color-text-muted);
  }
  
  h1, h2 {
    font-weight: bold;
  }
  
  
  /* Bio area */
  div.profile-pic {
      margin-top: 1em;
  }
  
  div.profile-pic img {
      width: 90%;
      max-width: 190px;
      margin: 0 auto;
      display: block;
  }
  
  .bio-info {
      margin: 1em auto;
      max-width: 220px;
  }
  
  .name {
      font-size: 1.5em;
  }
  
  .focusareas {
      font-size: .9em;
      font-weight: bold;
  }
  
  .whatido {
      margin-top: 1em;
  }
