:root {
  --my-accent: var(--pico-color-amber-250);
  --my-primary-dark: var(--pico-color-lime-400);
  --my-primary: var(--pico-color-lime-300);
  --text-light: var(--pico-color-zinc-100);
  --text: var(--pico-color-zinc-250);
  --underline-offset: 6px;
}
.container {
  max-width: 1024px;
}
body {
  font-family: Figtree;
}
strong {
  background-color: var(--pico-color-slate-800);
  border-color: var(--pico-color-slate-800);
  border-radius: 4px;
  font-weight: 600;
  padding-bottom: 1px;
  padding-left: 3px;
  padding-right: 3px;
  padding-top: 1px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: Limelight;
}
h1:before {
  color: var(--my-accent);
  content: "// ";
}
h2:before, h3:before, h4:before, h5:before, h6:before {
  color: var(--my-primary);
  content: "// ";
}
.nav {
  color: var(--text);
  font-weight: 500;
  text-decoration-color: var(--pico-background-color) !important;
  text-decoration-style: dotted;
  text-decoration-thickness: 2px;
  text-underline-offset: var(--underline-offset);
}
.nav:before {
  color: var(--my-primary);
  content: "$ ";
  font-weight: bold;
}
.nav:after {
  color: var(--my-accent);
  content: "_";
  font-weight: bold;
}
.nav:hover {
  color: var(--text-light);
  text-decoration-color: var(--my-primary) !important;
  text-decoration-thickness: 2px;
  text-underline-offset: var(--underline-offset);
}
main ul {
  padding-left: 0px;
}
main ul li {
  list-style: none;
  padding-left: 1.0em;
}
main ul li:before {
  color: var(--my-primary);
  content: "#";
  font-weight: bold;
  margin-left: -1.0em;
  margin-right: 0.25em;
}
main a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--my-primary-dark);
  text-decoration-style: dotted;
  text-decoration-thickness: 2px;
  text-underline-offset: var(--underline-offset);
}
main a:hover {
  color: var(--text-light);
  text-decoration-color: var(--my-primary);
}
article img {
  max-height: 40px;
  max-width: 40px;
  background-color: var(--pico-color-slate-800);
  border-style: solid;
  border-width: 0px;
  border-radius: 100%;
  border-color: var(--my-primary);
  padding: 8px;
}
article header {
  font-size: 1.1em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
article header span:before {
  content: "/* ";
  color: var(--my-accent);
}
article header span:after {
  content: " */";
  color: var(--my-accent);
}
pre.language-rust {
  background-color: var(--pico-color-slate-900);
  border-color: var(--pico-color-slate-800);
  border-radius: 8px;
  border-style: solid;
  border-width: 2px;
}
.profile_photo {
  border-color: var(--my-primary);
  border-radius: 100%;
  border-style: solid;
  float: right;
  margin-bottom: 16px;
  margin-left: 16px;
  max-heigth: 128px;
  max-width: 128px;
}
/* Mobile-specific CSS styles here */
@media only screen and (max-width: 600px) {
  .profile_photo {
    border-color: var(--my-primary);
    border-radius: 100%;
    border-style: solid;
    float: right;
    margin-bottom: 8px;
    margin-left: 8px;
    max-heigth: 96px;
    max-width: 96px;
  }
}
.tldr {
  background-color: var(--pico-color-slate-900);
  border-color: var(--pico-color-slate-800);
  border-radius: 8px;
  border-style: solid;
  border-width: 2px;
  font-size: 1.1em;
  font-style: italic;
  margin-bottom: 48px;
  padding:16px;
}
