/* base */
body {
  background-color: #1e1e1e;
  color: #e0e0e0;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.6; /* improve readability */
}

/* links */
a {
  color: #61afef;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* headers */
h1, h2, h3 {
  color: #98c379;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

/* inline code */
code {
  background-color: #2d2d2d;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: 0.95em;
}

/* block code */
pre {
  background-color: #2d2d2d;
  padding: 1em;
  border-radius: 4px;
  font-size: 0.95em;
  line-height: 1.5;
  overflow-x: auto;
  white-space: pre; /* <-- crucial */
  margin-bottom: 1.5em;
}

/* meta stuff */
.meta, time, small {
  color: #5c6370;
  font-size: 0.85em;
}

/* post summary */
.post-summary {
  border-bottom: 1px dashed #3c3c3c;
  margin-bottom: 1.5em;
  padding-bottom: 1em;
}

/* footer */
footer {
  margin-top: 4em;
  border-top: 1px solid #5c6370;
  padding-top: 1em;
  text-align: center;
  font-size: 0.85em;
  color: #5c6370;
}