/** Add your extra/custom CSS classes below */
/** .md-header__button refers to the header */
/** .md-logo refers to the icon/logo I'm trying to get rid of next to my name */
/** display: none totally removes the icon and shifts the rest of the text over to take its place */
/** !important allows this css style to take precedent over anything including anything in mkdocs.yml */
.md-header__button.md-logo {
    display: none !important;
  }

h1 {
    color: #000000 !important;
    font-weight: bold !important;
    text-align: center !important;
  }

h2 {
    color: #000000 !important;
    font-weight: bold;
    text-align: center !important;
  }  

h3 {
    color: #000000 !important;
    font-weight: bold;
    text-align: center !important;
  }  



