:root {
  --text-color: #111;
  --brand-color: #0065c4;
  --brand-alt-1-color: #8300df;
  --background-color: #f4f4f4;
  --code-background-color: rgba(211, 211, 211, 0.6);
  --overwraping-image-shadow-color: rgba(0, 0, 0, 0.05);
}

@media (prefers-color-scheme: dark) {
  :root {
    --text-color: #fdfdfd;
    --brand-color: #73ccff;
    --brand-alt-1-color: #d852ff;
    --background-color: #131313;
    --code-background-color: rgba(255, 255, 255, 0.15);
    --overwraping-image-shadow-color: rgba(0, 0, 0, 0.3);
  }
}
/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  font-family: DM Sans, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  min-height: 100vh;
  min-height: 100svh;
  padding-bottom: 1.2em;
  color: var(--text-color);
  background-color: var(--background-color);
}
@media screen and (max-width: 600px) {
  body {
    font-size: 15.2px;
  }
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure {
  margin-bottom: 0.6em;
}

/**
 * Images
 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

img + img {
  margin-top: 0.7em;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 14px;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 20px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}
h1:not(:first-child), h2:not(:first-child), h3:not(:first-child), h4:not(:first-child), h5:not(:first-child), h6:not(:first-child) {
  margin: 1em 0 0.5em 0;
}

h1 + h2,
h2 + h3,
h3 + h4 {
  margin-top: 0.2em !important;
}

/**
 * Links
 */
a {
  color: var(--brand-color);
  text-decoration: none;
}
a:visited {
  color: var(--brand-alt-1-color);
}
a:hover {
  color: var(--text-color);
  text-decoration: underline;
}

/**
 * Blockquotes
 */
blockquote {
  color: #828282;
  border-left: 4px solid #e8e8e8;
  padding-left: 7.5px;
  font-size: 18px;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  border-radius: 3px;
  background-color: var(--code-background-color);
  font-size: 0.9em;
  font-family: ui-monospace, Menlo, Inconsolata, Consolas, monospace;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 8px 12px;
  overflow-x: scroll;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/**
 * Wrapper
 */
.wrapper {
  max-width: -webkit-calc(700px - (15px * 2));
  max-width: calc(700px - 15px * 2);
  margin-right: auto;
  margin-left: auto;
  margin-top: 1em;
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (max-width: 800px) {
  .wrapper {
    max-width: -webkit-calc(700px - (15px));
    max-width: calc(700px - (15px));
  }
}

.site-header {
  margin-top: 1.6em;
}
@media screen and (max-width: 600px) {
  .site-header {
    font-size: 0.75em;
  }
}
.site-header a {
  color: var(--text-color);
}
.site-header .site-title {
  font-size: 2.4em;
  font-weight: 900;
  text-decoration: underline;
  transition: all 0.1s ease;
}
.site-header .site-title:hover {
  text-shadow: var(--brand-color) 0 0 16px;
}
.site-header .pages-list {
  margin: 0;
  font-size: 1.2em;
  list-style-type: none;
  font-weight: 400;
}
.site-header .pages-list li {
  display: inline-block;
  margin-right: 1em;
}

.post-title,
.page-title {
  font-weight: 900;
  line-height: 1.6em;
  padding: 0.2em 0 0 0;
  color: var(--text-color);
}
@media screen and (max-width: 600px) {
  .post-title,
  .page-title {
    font-size: 1.8em;
  }
}

/**
 * Page content
 */
.page-content-index {
  display: flex;
  align-items: center;
  min-height: 100vh;
}
.page-content-index .index-title {
  margin-bottom: 0.3em;
}
.page-content-index .index-h1-icon {
  margin: 0 0 0.23em 0;
  width: 0.9em;
  height: 0.9em;
  display: inline-block;
  border-radius: 0.2em;
  position: relative;
  box-shadow: 0 0 5px 2px var(--overwraping-image-shadow-color);
  z-index: 4;
}

.page-content-center {
  text-align: center;
}

.page-heading {
  font-size: 20px;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 15px;
}

.post-meta {
  font-size: 14px;
  color: #828282;
}

.post-link {
  display: block;
  font-size: 20px;
}

/**
 * Posts
 */
.post-header {
  margin-bottom: 15px;
}

h1 {
  font-size: 36px;
  line-height: 40px;
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 32px;
  }
}

.post-content {
  margin-bottom: 15px;
}
.post-content h2 {
  font-size: 28px;
  line-height: 32px;
}
@media screen and (max-width: 800px) {
  .post-content h2 {
    font-size: 26px;
  }
}
.post-content h3 {
  font-size: 22px;
  line-height: 24px;
}
@media screen and (max-width: 800px) {
  .post-content h3 {
    font-size: 22px;
  }
}
.post-content h4 {
  font-size: 20px;
}
@media screen and (max-width: 800px) {
  .post-content h4 {
    font-size: 18px;
  }
}

.page-content-index ul {
  margin-left: 0;
  list-style-type: none;
}
.page-content-index h1,
.page-content-index h2 {
  color: var(--text-color);
  font-weight: 900;
}
.page-content-index h3,
.page-content-index p,
.page-content-index li {
  font-size: 1.2em;
}
.page-content-index img {
  margin: 0.3em 0;
}
.page-content-index small {
  opacity: 0.7;
}
.page-content-index a:visited {
  color: var(--brand-color);
}
.page-content-index .face-anim {
  opacity: 0.25;
  transition: opacity 0.6s ease-out;
}
.page-content-index .face-anim:hover {
  opacity: 1;
  transition: opacity 2s ease-out;
}
.page-content-index .face-anim source,
.page-content-index .face-anim img {
  border-radius: 8px;
}

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