:root {
  --bg-color: #030303;
  --text-color: #e0e0e0;
  --meta-color: #888888;
  --border-color: #222222;
  --font-family: "JetBrains Mono", monospace;
  --base-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: var(--base-size);
  line-height: 1.4;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-top: 0;
}

p {
  margin-top: 0;
}

a {
  color: var(--text-color);
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.m-img img {
  filter: grayscale(1);
}

.highlighter-rouge,
highlight {
  background-color: var(--text-color);
  color: var(--bg-color);
}

div.highlighter-rouge code {
  display: block;
  overflow-x: auto;
  white-space: pre-wrap;
}

pre.highlight {
  padding: 1rem;
}

table {
  width: 100%;
  margin-bottom: 1rem;
}

table,
th,
td {
  border: thin solid var(--meta-color);
  border-collapse: collapse;
  padding: 0.4rem;
}

blockquote {
  font-style: italic;
  border: thin solid var(--border-color);
  padding: 1rem;
}
blockquote p {
  margin: 0;
}

.wrapper {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.site-header {
  margin: 3rem 0;
}
.site-header .site-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

section {
  margin-bottom: 2rem;
}

.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-meta {
  color: var(--meta-color);
}

.site-footer {
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--meta-color);
}
.site-footer .footer-col {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.site-footer p {
  margin: 0;
}

.page-content .post-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.page-content .post-meta {
  color: var(--meta-color);
  display: block;
}

/*# sourceMappingURL=style.css.map */