html,
body {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

body {
  color: #333;
  margin: 0;
  box-sizing: border-box;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial,
    sans-serif;
  padding-bottom: 60px;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #282828;
    color: #f0f0f0;
  }

  blockquote {
    color: #a2d2fb;
  }

  a {
    color: #7ce38b;
  }

  a:hover {
    color: #f0f0f0;
  }

  .aside,
  aside {
    color: #f7bfcd;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #eaff9f;
  }

  ul {
    list-style: none; /* Remove default bullets */
  }

  ul li::before {
    content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #a2d2fb; /* Change the color */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
  }

  /** CODE FORMATTING */

  .codehilite .hll {
    background-color: #282828;
  }
  .codehilite {
    background: #272822;
    color: #f8f8f2;
  }
  .codehilite .c {
    color: #75715e;
  } /* Comment */
  .codehilite .err {
    color: #960050;
    background-color: #282828;
  } /* Error */
  .codehilite .k {
    color: #66d9ef;
  } /* Keyword */
  .codehilite .l {
    color: #ae81ff;
  } /* Literal */
  .codehilite .n {
    color: #f8f8f2;
  } /* Name */
  .codehilite .o {
    color: #f92672;
  } /* Operator */
  .codehilite .p {
    color: #f8f8f2;
  } /* Punctuation */
  .codehilite .ch {
    color: #75715e;
  } /* Comment.Hashbang */
  .codehilite .cm {
    color: #75715e;
  } /* Comment.Multiline */
  .codehilite .cp {
    color: #75715e;
  } /* Comment.Preproc */
  .codehilite .cpf {
    color: #75715e;
  } /* Comment.PreprocFile */
  .codehilite .c1 {
    color: #75715e;
  } /* Comment.Single */
  .codehilite .cs {
    color: #75715e;
  } /* Comment.Special */
  .codehilite .gd {
    color: #f92672;
  } /* Generic.Deleted */
  .codehilite .ge {
    font-style: italic;
  } /* Generic.Emph */
  .codehilite .gi {
    color: #a6e22e;
  } /* Generic.Inserted */
  .codehilite .gs {
    font-weight: bold;
  } /* Generic.Strong */
  .codehilite .gu {
    color: #75715e;
  } /* Generic.Subheading */
  .codehilite .kc {
    color: #66d9ef;
  } /* Keyword.Constant */
  .codehilite .kd {
    color: #66d9ef;
  } /* Keyword.Declaration */
  .codehilite .kn {
    color: #f92672;
  } /* Keyword.Namespace */
  .codehilite .kp {
    color: #66d9ef;
  } /* Keyword.Pseudo */
  .codehilite .kr {
    color: #66d9ef;
  } /* Keyword.Reserved */
  .codehilite .kt {
    color: #66d9ef;
  } /* Keyword.Type */
  .codehilite .ld {
    color: #e6db74;
  } /* Literal.Date */
  .codehilite .m {
    color: #ae81ff;
  } /* Literal.Number */
  .codehilite .s {
    color: #e6db74;
  } /* Literal.String */
  .codehilite .na {
    color: #a6e22e;
  } /* Name.Attribute */
  .codehilite .nb {
    color: #f8f8f2;
  } /* Name.Builtin */
  .codehilite .nc {
    color: #a6e22e;
  } /* Name.Class */
  .codehilite .no {
    color: #66d9ef;
  } /* Name.Constant */
  .codehilite .nd {
    color: #a6e22e;
  } /* Name.Decorator */
  .codehilite .ni {
    color: #f8f8f2;
  } /* Name.Entity */
  .codehilite .ne {
    color: #a6e22e;
  } /* Name.Exception */
  .codehilite .nf {
    color: #a6e22e;
  } /* Name.Function */
  .codehilite .nl {
    color: #f8f8f2;
  } /* Name.Label */
  .codehilite .nn {
    color: #f8f8f2;
  } /* Name.Namespace */
  .codehilite .nx {
    color: #a6e22e;
  } /* Name.Other */
  .codehilite .py {
    color: #f8f8f2;
  } /* Name.Property */
  .codehilite .nt {
    color: #f92672;
  } /* Name.Tag */
  .codehilite .nv {
    color: #f8f8f2;
  } /* Name.Variable */
  .codehilite .ow {
    color: #f92672;
  } /* Operator.Word */
  .codehilite .w {
    color: #f8f8f2;
  } /* Text.Whitespace */
  .codehilite .mb {
    color: #ae81ff;
  } /* Literal.Number.Bin */
  .codehilite .mf {
    color: #ae81ff;
  } /* Literal.Number.Float */
  .codehilite .mh {
    color: #ae81ff;
  } /* Literal.Number.Hex */
  .codehilite .mi {
    color: #ae81ff;
  } /* Literal.Number.Integer */
  .codehilite .mo {
    color: #ae81ff;
  } /* Literal.Number.Oct */
  .codehilite .sa {
    color: #e6db74;
  } /* Literal.String.Affix */
  .codehilite .sb {
    color: #e6db74;
  } /* Literal.String.Backtick */
  .codehilite .sc {
    color: #e6db74;
  } /* Literal.String.Char */
  .codehilite .dl {
    color: #e6db74;
  } /* Literal.String.Delimiter */
  .codehilite .sd {
    color: #e6db74;
  } /* Literal.String.Doc */
  .codehilite .s2 {
    color: #e6db74;
  } /* Literal.String.Double */
  .codehilite .se {
    color: #ae81ff;
  } /* Literal.String.Escape */
  .codehilite .sh {
    color: #e6db74;
  } /* Literal.String.Heredoc */
  .codehilite .si {
    color: #e6db74;
  } /* Literal.String.Interpol */
  .codehilite .sx {
    color: #e6db74;
  } /* Literal.String.Other */
  .codehilite .sr {
    color: #e6db74;
  } /* Literal.String.Regex */
  .codehilite .s1 {
    color: #e6db74;
  } /* Literal.String.Single */
  .codehilite .ss {
    color: #e6db74;
  } /* Literal.String.Symbol */
  .codehilite .bp {
    color: #f8f8f2;
  } /* Name.Builtin.Pseudo */
  .codehilite .fm {
    color: #a6e22e;
  } /* Name.Function.Magic */
  .codehilite .vc {
    color: #f8f8f2;
  } /* Name.Variable.Class */
  .codehilite .vg {
    color: #f8f8f2;
  } /* Name.Variable.Global */
  .codehilite .vi {
    color: #f8f8f2;
  } /* Name.Variable.Instance */
  .codehilite .vm {
    color: #f8f8f2;
  } /* Name.Variable.Magic */
  .codehilite .il {
    color: #ae81ff;
  } /* Literal.Number.Integer.Long */
}

@media (prefers-color-scheme: light) {
  body {
    background-color: #fff;
    color: #282828;
  }

  blockquote {
    color: #0059a7;
  }

  a {
    color: #31af44;
  }

  a:hover {
    color: #282828;
  }

  .aside,
  aside {
    color: #ca611c;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #383838;
  }

  ul {
    list-style: none; /* Remove default bullets */
  }

  ul li::before {
    content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #0059a7; /* Change the color */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
  }

  /** CODE FORMATTING */
  .codehilite .hll {
    background-color: #ffffff;
  }
  .codehilite {
    background: #ffffff;
  }
  .codehilite .c {
    color: #666666;
    font-style: italic;
  } /* Comment */
  .codehilite .err {
    color: #333333;
  } /* Error */
  .codehilite .k {
    color: #228899;
    font-weight: bold;
  } /* Keyword */
  .codehilite .o {
    color: #333333;
  } /* Operator */
  .codehilite .ch {
    color: #666666;
    font-style: italic;
  } /* Comment.Hashbang */
  .codehilite .cm {
    color: #666666;
    font-style: italic;
  } /* Comment.Multiline */
  .codehilite .cp {
    color: #557799;
  } /* Comment.Preproc */
  .codehilite .cpf {
    color: #666666;
    font-style: italic;
  } /* Comment.PreprocFile */
  .codehilite .c1 {
    color: #666666;
    font-style: italic;
  } /* Comment.Single */
  .codehilite .cs {
    color: #cc0000;
    font-weight: bold;
    font-style: italic;
  } /* Comment.Special */
  .codehilite .gd {
    color: #a00000;
  } /* Generic.Deleted */
  .codehilite .ge {
    font-style: italic;
  } /* Generic.Emph */
  .codehilite .gr {
    color: #ff0000;
  } /* Generic.Error */
  .codehilite .gh {
    color: #000080;
    font-weight: bold;
  } /* Generic.Heading */
  .codehilite .gi {
    color: #00a000;
  } /* Generic.Inserted */
  .codehilite .go {
    color: #888888;
  } /* Generic.Output */
  .codehilite .gp {
    color: #c65d09;
    font-weight: bold;
  } /* Generic.Prompt */
  .codehilite .gs {
    font-weight: bold;
  } /* Generic.Strong */
  .codehilite .gu {
    color: #800080;
    font-weight: bold;
  } /* Generic.Subheading */
  .codehilite .gt {
    color: #0044dd;
  } /* Generic.Traceback */
  .codehilite .kc {
    color: #228899;
    font-weight: bold;
  } /* Keyword.Constant */
  .codehilite .kd {
    color: #228899;
    font-weight: bold;
  } /* Keyword.Declaration */
  .codehilite .kn {
    color: #228899;
    font-weight: bold;
  } /* Keyword.Namespace */
  .codehilite .kp {
    color: #0088ff;
    font-weight: bold;
  } /* Keyword.Pseudo */
  .codehilite .kr {
    color: #228899;
    font-weight: bold;
  } /* Keyword.Reserved */
  .codehilite .kt {
    color: #6666ff;
    font-weight: bold;
  } /* Keyword.Type */
  .codehilite .m {
    color: #6600ee;
    font-weight: bold;
  } /* Literal.Number */
  .codehilite .na {
    color: #000077;
  } /* Name.Attribute */
  .codehilite .nb {
    color: #007722;
  } /* Name.Builtin */
  .codehilite .nc {
    color: #ee99ee;
    font-weight: bold;
  } /* Name.Class */
  .codehilite .no {
    color: #228899;
    font-weight: bold;
  } /* Name.Constant */
  .codehilite .nd {
    color: #555555;
    font-weight: bold;
  } /* Name.Decorator */
  .codehilite .ni {
    color: #880000;
  } /* Name.Entity */
  .codehilite .ne {
    color: #ff0000;
    font-weight: bold;
  } /* Name.Exception */
  .codehilite .nf {
    color: #228899;
    font-weight: bold;
  } /* Name.Function */
  .codehilite .nl {
    color: #997700;
    font-weight: bold;
  } /* Name.Label */
  .codehilite .nn {
    color: #0e84b5;
    font-weight: bold;
  } /* Name.Namespace */
  .codehilite .nt {
    color: #007700;
  } /* Name.Tag */
  .codehilite .nv {
    color: #003366;
  } /* Name.Variable */
  .codehilite .ow {
    color: #000000;
    font-weight: bold;
  } /* Operator.Word */
  .codehilite .w {
    color: #bbbbbb;
  } /* Text.Whitespace */
  .codehilite .mb {
    color: #6600ee;
    font-weight: bold;
  } /* Literal.Number.Bin */
  .codehilite .mf {
    color: #6600ee;
    font-weight: bold;
  } /* Literal.Number.Float */
  .codehilite .mh {
    color: #005588;
    font-weight: bold;
  } /* Literal.Number.Hex */
  .codehilite .mi {
    color: #6666ff;
    font-weight: bold;
  } /* Literal.Number.Integer */
  .codehilite .mo {
    color: #4400ee;
    font-weight: bold;
  } /* Literal.Number.Oct */
  .codehilite .sc {
    color: #8888ff;
  } /* Literal.String.Char */
  .codehilite .sd {
    color: #dd4422;
  } /* Literal.String.Doc */
  .codehilite .se {
    color: #666666;
    font-weight: bold;
  } /* Literal.String.Escape */
  .codehilite .sx {
    color: #ff8888;
  } /* Literal.String.Other */
  .codehilite .sr {
    color: #000000;
  } /* Literal.String.Regex */
  .codehilite .ss {
    color: #ffcc88;
  } /* Literal.String.Symbol */
  .codehilite .bp {
    color: #007722;
  } /* Name.Builtin.Pseudo */
  .codehilite .fm {
    color: #228899;
    font-weight: bold;
  } /* Name.Function.Magic */
  .codehilite .vc {
    color: #ccccff;
  } /* Name.Variable.Class */
  .codehilite .vg {
    color: #ff8844;
  } /* Name.Variable.Global */
  .codehilite .vi {
    color: #aaaaff;
  } /* Name.Variable.Instance */
  .codehilite .vm {
    color: #003366;
  } /* Name.Variable.Magic */
  .codehilite .il {
    color: #6666ff;
    font-weight: bold;
  } /* Literal.Number.Integer.Long */
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

aside,
.aside {
  position: relative;
  display: inline;
  float: right;
  width: 10vw;
  margin-right: -12vw;
  margin-top: 14px;
  font-size: 16px;
}

@media (max-width: 900px) {
  aside,
  .aside {
    display: block;
    float: none;
    margin: 5% 10% 5% 10%;
    width: 80%;
    font-size: 16px;
  }
}

blockquote p {
  display: inline;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva,
    Verdana, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-variant: normal;
  font-weight: 500;
  line-height: 30px;
}

blockquote {
  border-left: 4px solid;
  padding-left: 30px;
  margin-inline-start: 20px;
  /* margin-inline-start: 20xp; */
}

code {
  display: block;
  padding-left: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  white-space: pre;
  font-family: "Courier New", Courier, monospace;
  font-size: 15px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 18.5714px;
}

.container {
  display: flex;
  flex-direction: row;
}

.content {
  padding-top: 60px;
  margin: auto;
  width: 70%;
  min-width: 360px;
  max-width: 660px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva,
    Verdana, sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
}

h1 {
  font-size: 48px;
  line-height: 26.4px;
  margin-top: 40px;
  margin-bottom: 60px;
}

h2 {
  font-size: 32px;
  line-height: 15.4px;
  margin-top: 40px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  line-height: 15.4px;
  margin-top: 40px;
  margin-bottom: 20px;
}

h4 {
  font-size: 18px;
  line-height: 15.4px;
  margin-bottom: 14px;
}

img {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 420px;
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 10px;
}

li {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.navigation {
  display: flex;
  justify-content: end;
  padding: 10px;
  padding-right: 30px;
}

.navigation-item {
  font-weight: 700;
  font-size: 18px;
  padding: 10px;
}

p {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 900px;
}
