/**
 * 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: 400 15px/1.5 "JetBrains Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  color: #C9D1D9;
  background-color: #0D1117;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.page-content {
  animation: fadeIn 0.5s ease-out; }

/**
 * Custom selection colors
 */
::selection {
  background-color: #79C0FF;
  color: #0D1117; }

::-moz-selection {
  background-color: #79C0FF;
  color: #0D1117; }

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

/**
 * `main` element
 */
main {
  display: block;
  /* Default value of `display` of `main` element is 'inline' in IE 11. */ }

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

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

figcaption {
  font-size: 13.125px; }

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

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

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-family: "JetBrains Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 24px;
  margin-bottom: 16px;
  text-wrap: balance; }

/**
 * Links
 */
a {
  color: #79C0FF;
  text-decoration: none;
  transition: color 0.2s ease; }
  a:visited {
    color: #A371F7; }
  a:hover {
    color: #58A6FF;
    text-decoration: none; }
  .social-media-list a:hover {
    text-decoration: none; }
    .social-media-list a:hover .username {
      text-decoration: underline; }

/**
 * Blockquotes
 */
blockquote {
  color: #8B949E;
  border-left: 4px solid #30363D;
  padding-left: 16px;
  font-size: 16.875px;
  letter-spacing: -1px;
  font-style: italic; }
  blockquote > :last-child {
    margin-bottom: 0; }

/**
 * Code formatting
 */
pre,
code {
  font-size: 14.0625px;
  border: 1px solid #30363D;
  border-radius: 5px;
  background-color: #161B22;
  color: #C9D1D9; }

code {
  padding: 2px 6px; }

pre {
  padding: 12px 16px;
  overflow-x: auto; }
  pre > code {
    border: 0;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent; }

/**
 * Wrapper
 */
.wrapper {
  max-width: -webkit-calc(920px - (32px * 2));
  max-width: calc(920px - (32px * 2));
  margin-right: auto;
  margin-left: auto;
  padding-right: 32px;
  padding-left: 32px; }
  @media screen and (max-width: 800px) {
    .wrapper {
      max-width: -webkit-calc(920px - (32px));
      max-width: calc(920px - (32px));
      padding-right: 16px;
      padding-left: 16px; } }

/**
 * Clearfix
 */
.wrapper:after, .footer-col-wrapper:after {
  content: "";
  display: table;
  clear: both; }

/**
 * Icons
 */
.svg-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  fill: #8B949E;
  padding-right: 5px;
  vertical-align: text-top; }

.social-media-list li + li {
  padding-top: 0; }

/**
 * Tables
 */
table {
  margin-bottom: 32px;
  width: 100%;
  text-align: left;
  color: white;
  border-collapse: collapse;
  border: 1px solid #30363D; }
  table tr:nth-child(even) {
    background-color: #3d454e; }
  table th, table td {
    padding: 10.6666666667px 16px; }
  table th {
    background-color: #373e46;
    border: 1px solid #272c32;
    border-bottom-color: #15181b; }
  table td {
    border: 1px solid #30363D; }

/**
 * Site header
 */
.site-header {
  border-top: none;
  border-bottom: 1px solid #30363D;
  padding: 16px 0;
  background-color: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(10px);
  position: relative; }
  .site-header .wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px; }

.site-title {
  font-size: 27px;
  font-family: "JetBrains Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  min-width: 0;
  justify-self: start; }
  .site-title, .site-title:visited {
    color: #C9D1D9; }
  .site-title:hover {
    color: #58A6FF; }

.site-nav {
  line-height: 1.15;
  justify-self: end; }
  .site-nav .trigger {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-end; }
  .site-nav .nav-trigger {
    display: none; }
  .site-nav .menu-icon {
    display: none; }
  .site-nav .page-link {
    color: #C9D1D9;
    line-height: 1.5;
    font-weight: 500;
    font-size: 14.25px;
    transition: color 0.2s ease;
    position: relative; }
    .site-nav .page-link:hover {
      color: #58A6FF; }
    .site-nav .page-link.active {
      color: #56D364; }
      .site-nav .page-link.active::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: #56D364;
        border-radius: 2px; }
  @media screen and (max-width: 600px) {
    .site-nav {
      position: absolute;
      top: 10px;
      right: 16px;
      background-color: #0D1117;
      border: 1px solid #30363D;
      border-radius: 5px;
      text-align: right; }
      .site-nav label[for="nav-trigger"] {
        display: block;
        float: right;
        width: 36px;
        height: 36px;
        z-index: 2;
        cursor: pointer; }
      .site-nav .menu-icon {
        display: block;
        float: right;
        width: 36px;
        height: 26px;
        line-height: 0;
        padding-top: 10px;
        text-align: center; }
        .site-nav .menu-icon > svg {
          fill: #484F58; }
      .site-nav input ~ .trigger {
        clear: both;
        display: none; }
      .site-nav input:checked ~ .trigger {
        display: block;
        padding-bottom: 5px; }
      .site-nav .page-link {
        display: block;
        padding: 5px 10px;
        margin-left: 20px; } }

/**
 * Site footer
 */
.site-footer {
  border-top: 1px solid #30363D;
  padding: 24px 0;
  background-color: rgba(13, 17, 23, 0.5);
  margin-top: 0; }

.contact-list,
.social-media-list {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0; }

.footer-col-wrapper {
  font-size: 14.0625px;
  color: #8B949E;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 32px; }

.footer-email {
  color: #8B949E;
  line-height: 1.5; }

.social-media-list {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  line-height: 1.5;
  justify-self: end; }
  .social-media-list li {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center; }
  .social-media-list a {
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease; }
    .social-media-list a:hover {
      color: #58A6FF; }
      .social-media-list a:hover .username {
        text-decoration: none; }
      .social-media-list a:hover .svg-icon {
        fill: #58A6FF; }
    .social-media-list a .svg-icon {
      fill: #8B949E;
      margin-right: 5px;
      width: 16px;
      height: 16px;
      vertical-align: text-bottom; }
    .social-media-list a .username {
      line-height: 1.5; }

@media screen and (max-width: 600px) {
  .footer-col-wrapper {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 16px; }

  .social-media-list {
    justify-self: start; } }
/**
 * Page content
 */
.page-content {
  padding: 40px 0 48px;
  flex: 1; }

.page-heading {
  font-size: 37.5px;
  margin-top: 0;
  margin-bottom: 32px; }

.post-list {
  margin-left: 0;
  list-style: none; }
  .post-list > li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #30363D; }
    .post-list > li:last-child {
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 0; }

.post-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  align-items: start;
  column-gap: 24px; }
  @media screen and (max-width: 600px) {
    .post-item {
      grid-template-columns: minmax(0, 1fr);
      gap: 4px; } }

.post-meta {
  font-size: 11.15625px;
  color: #8B949E;
  font-weight: 400;
  white-space: nowrap;
  text-align: right;
  font-variant-numeric: tabular-nums; }
  @media screen and (max-width: 600px) {
    .post-meta {
      text-align: left; } }

.post-link {
  font-size: 18px;
  line-height: 1.4;
  color: #C9D1D9;
  font-family: "JetBrains Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-weight: 600;
  min-width: 0; }
  .post-link:hover {
    color: #58A6FF; }

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

.post-title {
  font-size: 39.375px;
  letter-spacing: -1px;
  line-height: 1; }
  @media screen and (max-width: 800px) {
    .post-title {
      font-size: 33.75px; } }

.post-content {
  margin-bottom: 32px; }
  .post-content h2 {
    font-size: 30px; }
    @media screen and (max-width: 800px) {
      .post-content h2 {
        font-size: 26.25px; } }
  .post-content h3 {
    font-size: 24.375px; }
    @media screen and (max-width: 800px) {
      .post-content h3 {
        font-size: 20.625px; } }
  .post-content h4 {
    font-size: 18.75px; }
    @media screen and (max-width: 800px) {
      .post-content h4 {
        font-size: 16.875px; } }

/**
 * Terminal aesthetic elements
 */
.terminal-prompt {
  color: #56D364;
  font-weight: 500;
  margin-right: 0.5em; }

/**
 * Syntax highlighting styles - Dark theme
 */
.highlight {
  background: #161B22;
  border-radius: 5px; }
  .highlight pre {
    margin: 0;
    padding: 0; }
  .highlighter-rouge .highlight {
    background: #161B22; }
  .highlight .c {
    color: #75715e;
    font-style: italic; }
  .highlight .cm {
    color: #75715e;
    font-style: italic; }
  .highlight .cp {
    color: #75715e;
    font-weight: bold; }
  .highlight .c1 {
    color: #75715e;
    font-style: italic; }
  .highlight .cs {
    color: #75715e;
    font-weight: bold;
    font-style: italic; }
  .highlight .err {
    color: #f92672;
    background-color: #1e0010; }
  .highlight .k {
    color: #66d9ef;
    font-weight: bold; }
  .highlight .kc {
    color: #66d9ef;
    font-weight: bold; }
  .highlight .kd {
    color: #66d9ef;
    font-weight: bold; }
  .highlight .kp {
    color: #66d9ef;
    font-weight: bold; }
  .highlight .kr {
    color: #66d9ef;
    font-weight: bold; }
  .highlight .kt {
    color: #66d9ef;
    font-weight: bold; }
  .highlight .o {
    color: #f92672; }
  .highlight .ow {
    color: #f92672;
    font-weight: bold; }
  .highlight .na {
    color: #a6e22e; }
  .highlight .nb {
    color: #f8f8f2; }
  .highlight .nc {
    color: #a6e22e;
    font-weight: bold; }
  .highlight .no {
    color: #66d9ef; }
  .highlight .ni {
    color: #f8f8f2; }
  .highlight .ne {
    color: #a6e22e;
    font-weight: bold; }
  .highlight .nf {
    color: #a6e22e;
    font-weight: bold; }
  .highlight .nn {
    color: #f8f8f2; }
  .highlight .nt {
    color: #f92672; }
  .highlight .nv {
    color: #f8f8f2; }
  .highlight .m {
    color: #ae81ff; }
  .highlight .mf {
    color: #ae81ff; }
  .highlight .mh {
    color: #ae81ff; }
  .highlight .mi {
    color: #ae81ff; }
  .highlight .mo {
    color: #ae81ff; }
  .highlight .il {
    color: #ae81ff; }
  .highlight .s {
    color: #e6db74; }
  .highlight .sb {
    color: #e6db74; }
  .highlight .sc {
    color: #e6db74; }
  .highlight .sd {
    color: #e6db74; }
  .highlight .s2 {
    color: #e6db74; }
  .highlight .se {
    color: #ae81ff; }
  .highlight .sh {
    color: #e6db74; }
  .highlight .si {
    color: #e6db74; }
  .highlight .sx {
    color: #e6db74; }
  .highlight .sr {
    color: #e6db74; }
  .highlight .s1 {
    color: #e6db74; }
  .highlight .ss {
    color: #e6db74; }
  .highlight .bp {
    color: #f8f8f2; }
  .highlight .vc {
    color: #f8f8f2; }
  .highlight .vg {
    color: #f8f8f2; }
  .highlight .vi {
    color: #f8f8f2; }
  .highlight .w {
    color: #f8f8f2; }
  .highlight .gd {
    color: #f92672; }
  .highlight .ge {
    font-style: italic; }
  .highlight .gr {
    color: #f92672; }
  .highlight .gh {
    color: #75715e; }
  .highlight .gi {
    color: #a6e22e; }
  .highlight .go {
    color: #75715e; }
  .highlight .gp {
    color: #75715e; }
  .highlight .gs {
    font-weight: bold; }
  .highlight .gu {
    color: #75715e; }
  .highlight .gt {
    color: #f92672; }

a {
  color: #79C0FF;
  text-decoration: none;
  transition: color 0.2s ease; }
  a:visited {
    color: #A371F7; }
  a:hover {
    color: #58A6FF;
    text-decoration: none; }

.element-using-grey {
  color: #8B949E; }
