@import url("syntax-theme-dark.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --fg-color: #444;
    --bg-color: #fafafa;
    --radius: 4px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--fg-color);
  line-height: 1.6;
  font-size: 18px;
  font-family: 'Noto Serif', serif;

}

ul {
  list-style: none;
}

ul li::before {
  content: "+ ";
}

a {
  color: inherit;
}

a.visited {
  color: inherit;
}

#header {
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  text-align: center;
}

#header h2 {
  margin: 0;
}

.container {
  width: 90vw;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post-content pre {
  padding: 1em;
  border-radius: var(--radius);
  font-size: 14px;
}

.blog-post-content img {
  margin-top: 1em;
  margin-bottom: 1em;
}

.blog-post-content ul {
  padding: 0;
}

#pagination {
  margin-left: auto;
  margin-right: auto;
  width: max-content;
}

#pagination a {
  text-decoration: none;
}

.tag {
  font-weight: 700;
}
