
blockquote p {
  background-color: var(--box-bg);
  padding: 1em;
  border-radius: 10px;
}


/* First letter */
.first-letter {
  float: left;
  color: var(--cont);
  font-weight: bold;
  font-size: 6em;
  line-height: 0.86;
  margin-bottom: -0.1em;
  margin-left: -0.06em;
}

/* Note box */
.notebox {
  padding: 1em;
  border: 4px solid var(--box);
  border-radius: 10px;
  background-color: var(--box-bg);
  margin-bottom: 1.2em;
  margin-top: 1.2em;
  margin-left: 1em;
  margin-right: 1em;
}

.nb-title {
  color: var(--main);
  font-weight: bold;
}

/* Custom <hr> */
.article-content hr {
  background-color: var(--cont);
  height: 2px;
}


/* Explicit background color for code */
pre, code {
  background-color: rgba(0, 0, 0, 0.05);
}


/* smaller images in posts*/
.post-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  border: 2px solid #808080;
}

/* Remove link style from linked images */
.post-img a {
  border-bottom: none;
  box-shadow: none;
}

.post-img a:hover,
.post-img a:focus {
  background: transparent;
}