/* Force title headings to be pure black */
.md-typeset h1,
.md-typeset h2,
.md-typeset h3 {
  color: #000000;
}

/* Make blog post titles bold */
.md-typeset h1 {
  font-weight: 500;
}

/* Force body text to black */
.md-typeset p,
.md-typeset li,
.md-typeset blockquote {
  color: #000000;
}

/*Center that image */
/* Center all images inside the content area */
.md-typeset img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 100%;
  height: auto;
}