* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow-x: hidden;
  color: #ddd;
  font: 16px/1.4 "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  background: #202020;
}

.about-body,
.projects-body,
.blog-body {
  place-items: start center;
}

body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(82vw, 780px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, .14) 0%,
    rgba(255, 255, 255, .06) 46%,
    transparent 78%
  );
  filter: blur(14px) brightness(.78);
  opacity: .36;
  transform: translate(-50%, -50%) scale(.82);
  animation: light-orb-breathe 3.8s ease-in-out infinite;
}

.home,
.about-page,
.projects-page,
.blog-page {
  position: relative;
  z-index: 1;
  text-align: center;
}

.home {
  width: min(88vw, 820px);
}

.about-page {
  width: min(90vw, 900px);
  padding: 56px 0;
}

.projects-page {
  width: min(92vw, 1200px);
  padding: 56px 0;
}

.blog-page {
  width: min(92vw, 1120px);
  padding: 56px 0;
}

.back-link {
  display: block;
  width: max-content;
  margin: 0 auto 32px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  color: #aaa;
  font-size: 18px;
}

.back-link:hover {
  border-color: rgba(255, 255, 255, .34);
}

.profile {
  padding-bottom: 36px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.about-profile {
  border-bottom: 0;
}

.avatar {
  width: 140px;
  height: 140px;
  border: 3px solid #ddd;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 14px rgba(255, 255, 255, .12);
}

h1 {
  margin: 22px 0 0;
  font-size: 56px;
  font-weight: 400;
  text-shadow: 0 0 8px rgba(255, 255, 255, .35);
}

.headline {
  max-width: 520px;
  margin: 16px auto 0;
  color: #aaa;
  font-size: 22px;
}

.nav {
  margin-top: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.nav-item {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.nav-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, .12);
}

a {
  color: inherit;
  text-decoration: none;
}

.nav-link {
  display: block;
  padding: 24px 12px;
  color: #aaa;
  font-size: 32px;
}

.nav-link:hover,
.back-link:hover {
  color: #fff;
}

.page-header {
  padding-bottom: 30px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.page-header h1 {
  margin-top: 0;
}

.projects-page .page-header {
  border-bottom: 0;
}

.about-content {
  max-width: 900px;
  margin: 10px auto 0;
  text-align: left;
}

.projects-content,
.blog-content {
  width: 100%;
  margin: 36px auto 0;
}

.project-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.project-item {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  text-align: left;
}

.project-time {
  justify-self: start;
  margin-top: 2px;
  min-width: 96px;
  padding: 4px 14px;
  border: 1px solid rgba(174, 201, 208, .28);
  border-radius: 2px;
  background: rgba(64, 96, 108, .66);
  color: #e4f1f4;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.project-title {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.project-title-link {
  display: block;
  color: #fff;
}

.project-title-link:hover {
  color: #d8f3ff;
}

.project-title-tag {
  color: #d9b66a;
}

.project-authors {
  margin: 4px 0 0;
  color: #dedede;
  font-size: 14px;
  line-height: 1.3;
}

.project-content {
  min-width: 0;
}

.project-overview {
  --project-image-width: clamp(200px, 24vw, 320px);
  --project-image-height: calc((var(--project-image-width) * 9 / 16) * 1.08);
  --project-overview-gap: 18px;
  display: grid;
  grid-template-columns: var(--project-image-width) minmax(0, 1fr);
  gap: var(--project-overview-gap);
  align-items: stretch;
  margin-top: 18px;
}

.project-figure {
  min-width: 0;
  margin: 0;
}

.project-image {
  display: block;
  width: 100%;
  height: var(--project-image-height);
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 4px;
  object-fit: cover;
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

.project-description {
  height: var(--project-image-height);
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  background: rgba(255, 255, 255, .035);
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.5;
  overflow: auto;
}

.project-author-highlight {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.blog-catalog {
  text-align: left;
}

.blog-collection {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
  gap: 42px;
  align-items: start;
}

.blog-main {
  min-width: 0;
}

.blog-results-summary {
  margin: 0 0 18px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.4;
}

.blog-list {
  display: grid;
  gap: 16px;
}

.blog-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 4px;
  background: rgba(255, 255, 255, .028);
  color: #aaa;
  display: grid;
  gap: 10px;
  overflow: hidden;
}

.blog-card:hover {
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .048);
  color: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, .06);
}

.blog-card-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 14px;
  align-items: start;
  min-width: 0;
}

.blog-card-meta {
  color: #7f8794;
  font-size: 13px;
  line-height: 1.3;
}

.blog-card-status {
  max-width: 150px;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 2px;
  background: rgba(255, 255, 255, .055);
  color: #d8d8d8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-card-status[data-status="completed"] {
  border-color: rgba(114, 184, 132, .34);
  background: rgba(58, 116, 75, .34);
  color: #cbe8cf;
}

.blog-card-status[data-status="updating"] {
  border-color: rgba(205, 169, 90, .36);
  background: rgba(126, 103, 47, .34);
  color: #ead9a8;
}

.blog-card-status[data-status="todo"] {
  border-color: rgba(205, 99, 99, .34);
  background: rgba(124, 56, 56, .34);
  color: #ecc0c0;
}

.blog-card-title {
  display: -webkit-box;
  color: #f4f4f4;
  font-size: 20px;
  line-height: 1.28;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card-summary {
  display: -webkit-box;
  color: #b8b8b8;
  font-size: 15px;
  line-height: 1.45;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.blog-card-tag {
  min-width: 0;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 2px;
  background: rgba(255, 255, 255, .055);
  color: #bfcbd0;
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-sidebar {
  display: grid;
  gap: 34px;
  padding-top: 36px;
}

.blog-filter-group {
  min-width: 0;
}

.blog-filter-heading {
  display: flex;
  gap: 14px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.blog-filter-heading h2 {
  margin: 0;
  color: #f4f4f4;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 0 0 6px rgba(255, 255, 255, .22);
}

.blog-filter-reset,
.blog-filter-chip,
.blog-status-button {
  font: inherit;
}

.blog-filter-reset {
  padding: 0;
  border: 0;
  background: none;
  color: #aaa;
  cursor: pointer;
}

.blog-filter-reset:hover,
.blog-filter-reset[aria-pressed="true"] {
  color: #fff;
}

.blog-filter-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-filter-chip {
  min-width: 0;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 4px;
  background: rgba(255, 255, 255, .035);
  color: #ddd;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.2;
}

.blog-filter-chip:hover,
.blog-filter-chip[aria-pressed="true"] {
  border-color: rgba(174, 201, 208, .42);
  background: rgba(64, 96, 108, .5);
  color: #fff;
}

.blog-status-list {
  display: grid;
  gap: 10px;
}

.blog-status-button {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) max-content;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 2px 0;
  border: 0;
  background: none;
  color: #aaa;
  cursor: pointer;
  text-align: left;
}

.blog-status-button:hover,
.blog-status-button[aria-pressed="true"] {
  color: #fff;
}

.blog-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9eb3ba;
  box-shadow: 0 0 8px rgba(174, 201, 208, .24);
}

.blog-status-button[data-status="completed"] .blog-status-dot {
  background: #7fbd8f;
  box-shadow: 0 0 8px rgba(127, 189, 143, .28);
}

.blog-status-button[data-status="updating"] .blog-status-dot {
  background: #d3b05e;
  box-shadow: 0 0 8px rgba(211, 176, 94, .26);
}

.blog-status-button[data-status="todo"] .blog-status-dot {
  background: #cf7070;
  box-shadow: 0 0 8px rgba(207, 112, 112, .26);
}

.blog-status-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-status-count {
  color: #7f8794;
}

.blog-empty-state {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 4px;
  background: rgba(255, 255, 255, .028);
  color: #aaa;
}

.blog-article {
  width: min(100%, 1140px);
  min-width: 0;
  margin: 0 auto;
  text-align: left;
}

.blog-article-shell {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 780px);
  gap: 52px;
  align-items: start;
  justify-content: center;
}

.blog-article-shell-no-toc {
  grid-template-columns: minmax(0, 780px);
}

.blog-reading {
  min-width: 0;
}

.blog-toc {
  position: sticky;
  top: 28px;
  min-width: 0;
  max-height: calc(100vh - 56px);
  padding: 4px 0 4px 22px;
  border-left: 1px solid rgba(255, 255, 255, .12);
  overflow: auto;
}

.blog-toc-title {
  margin: 0 0 16px;
  color: #f4f4f4;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.blog-toc-nav {
  display: grid;
  gap: 10px;
}

.blog-toc-link {
  display: block;
  color: #9aa4b2;
  font-size: 15px;
  line-height: 1.45;
}

.blog-toc-link:hover {
  color: #fff;
}

.blog-toc-link-level-2 {
  padding-left: 14px;
}

.blog-toc-link-level-3 {
  padding-left: 28px;
}

.blog-toc-link-level-4 {
  padding-left: 42px;
  font-size: 14px;
}

.blog-article-header {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.blog-detail-back {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  color: #aaa;
  font-size: 15px;
  line-height: 1.2;
}

.blog-detail-back:hover {
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
}

.blog-meta {
  margin: 0;
  color: #8d98a6;
  font-size: 13px;
  line-height: 1.4;
}

.blog-article-title {
  margin: 8px 0 0;
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.18;
  text-shadow: 0 0 8px rgba(255, 255, 255, .25);
}

.blog-summary {
  max-width: 680px;
  margin: 14px 0 0;
  color: #aaa;
  font-size: 16px;
  line-height: 1.5;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.blog-tag {
  padding: 4px 10px;
  border: 1px solid rgba(174, 201, 208, .24);
  border-radius: 2px;
  background: rgba(64, 96, 108, .42);
  color: #dceef3;
  font-size: 12px;
  line-height: 1.2;
}

.markdown-content {
  color: #d4d4d4;
  font-family: "Helvetica Neue", "Microsoft YaHei UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
}

.markdown-content strong,
.markdown-content b {
  color: #d9b66a;
  font-weight: 700;
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
  margin: 30px 0 12px;
  color: #f4f4f4;
  font-weight: 400;
  line-height: 1.24;
  scroll-margin-top: 24px;
  text-shadow: 0 0 6px rgba(255, 255, 255, .16);
}

.markdown-content h1 {
  font-size: 30px;
}

.markdown-content h2 {
  font-size: 24px;
}

.markdown-content h3 {
  font-size: 20px;
}

.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
  font-size: 18px;
}

.markdown-content p,
.markdown-content ul,
.markdown-content ol,
.markdown-content blockquote,
.markdown-content pre,
.markdown-content .markdown-table {
  margin: 0 0 20px;
}

.markdown-content ul,
.markdown-content ol {
  padding-left: 1.35em;
}

.markdown-content ul {
  list-style: disc;
}

.markdown-content ol {
  list-style: decimal;
}

.markdown-content li {
  margin: 6px 0;
}

.markdown-content a {
  color: #f4f4f4;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.markdown-content a:hover {
  color: #fff;
}

.markdown-content blockquote {
  padding: 4px 0 4px 18px;
  border-left: 2px solid rgba(174, 201, 208, .36);
  color: #bfcbd0;
}

.markdown-content blockquote p {
  margin: 0;
}

.markdown-content code {
  padding: 2px 5px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 3px;
  background: rgba(255, 255, 255, .06);
  color: #f1f1f1;
  font: .9em/1.4 Consolas, "Liberation Mono", Menlo, monospace;
}

.markdown-content pre {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  background: rgba(255, 255, 255, .045);
  overflow: auto;
}

.markdown-content pre code {
  display: block;
  padding: 0;
  border: 0;
  background: none;
}

.markdown-table {
  max-width: 100%;
  overflow-x: auto;
}

.markdown-content table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  color: #d4d4d4;
  font-size: 15px;
  line-height: 1.45;
}

.markdown-content th,
.markdown-content td {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  text-align: left;
  vertical-align: top;
}

.markdown-content th {
  background: rgba(255, 255, 255, .07);
  color: #f4f4f4;
  font-weight: 700;
}

.markdown-content td {
  background: rgba(255, 255, 255, .025);
}

.markdown-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 4px;
  background: rgba(255, 255, 255, .04);
}

.markdown-content hr {
  height: 1px;
  margin: 30px 0;
  border: 0;
  background: rgba(255, 255, 255, .12);
}

.bio {
  color: #c9c9c9;
  font-size: 20px;
}

.bio p {
  margin: 0 0 16px;
}

.about-bio {
  max-width: 680px;
  margin: 16px auto 0;
  color: #aaa;
  font-size: 20px;
  line-height: 1.45;
}

.about-bio p {
  margin: 0;
  white-space: pre-line;
}

.about-bio a {
  color: #f4f4f4;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-bio a:hover {
  color: #fff;
}

.about-columns {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.section-title {
  margin: 0;
  color: #f4f4f4;
  font-size: 24px;
  font-weight: 400;
  text-shadow: 0 0 6px rgba(255, 255, 255, .22);
}

.info-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.info-row:last-child {
  border-bottom: 0;
}

dt,
dd {
  margin: 0;
}

dt {
  color: #888;
}

dd {
  color: #ddd;
}

.education-list {
  display: grid;
  gap: 18px;
}

.education-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.education-icon {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  fill: #f4f4f4;
}

.education-content {
  min-width: 0;
}

.education-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 16px;
  align-items: start;
}

.education-item h3,
.education-degree {
  margin: 0;
  color: #ddd;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.4;
}

.education-school,
.education-degree,
.education-period,
.education-description {
  margin: 4px 0 0;
  color: #aaa;
  font-size: inherit;
  line-height: 1.4;
}

.education-school {
  color: #7f8794;
}

.education-heading .education-period {
  justify-self: end;
  margin: 0;
  color: #aaa;
  white-space: nowrap;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
}

.social-link {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: #aaa;
}

.social-link:hover {
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, .1);
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.data-error {
  margin: 28px 0 0;
  color: #c9c9c9;
  text-align: center;
}

@keyframes light-orb-breathe {
  0%,
  100% {
    opacity: .32;
    filter: blur(18px) brightness(.72);
    transform: translate(-50%, -50%) scale(.78);
  }

  50% {
    opacity: .62;
    filter: blur(13px) brightness(1.04);
    transform: translate(-50%, -50%) scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
  }
}

@media (min-width: 1180px) {
  .project-title {
    white-space: nowrap;
  }
}

@media (max-width: 920px) {
  .blog-collection {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding-top: 0;
  }

  .blog-article-shell,
  .blog-article-shell-no-toc {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .blog-toc {
    position: static;
    max-height: none;
    padding: 0 0 18px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .blog-toc-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .blog-toc-link,
  .blog-toc-link-level-2,
  .blog-toc-link-level-3,
  .blog-toc-link-level-4 {
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .about-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .project-overview {
    --project-image-width: 100%;
    --project-image-height: auto;
    grid-template-columns: 1fr;
  }

  .project-description {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .blog-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .home,
  .about-page,
  .projects-page,
  .blog-page {
    width: 92vw;
  }

  .avatar {
    width: 112px;
    height: 112px;
  }

  h1 {
    font-size: 42px;
  }

  .headline {
    font-size: 18px;
  }

  .nav-list {
    grid-template-columns: 1fr;
  }

  .nav-item,
  .nav-item:last-child {
    border-right: 1px solid rgba(255, 255, 255, .12);
  }

  .about-page,
  .projects-page,
  .blog-page {
    padding: 36px 0;
  }

  .about-content {
    margin-top: 28px;
  }

  .bio {
    font-size: 18px;
  }

  .about-bio {
    font-size: 18px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .education-item {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
  }

  .education-icon {
    width: 18px;
    height: 18px;
  }

  .project-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .project-content {
    grid-column: auto;
  }

  .project-title {
    font-size: 17px;
    white-space: normal;
  }

  .blog-card {
    padding: 16px;
  }

  .blog-card-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .blog-card-status {
    justify-self: start;
  }

  .blog-article-title {
    font-size: 28px;
  }

  .markdown-content {
    font-size: 16px;
  }

  .markdown-content h1 {
    font-size: 27px;
  }

  .markdown-content h2 {
    font-size: 22px;
  }

  .markdown-content h3 {
    font-size: 19px;
  }
}
