@charset "UTF-8";
@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
    overflow-y: scroll;
  }
}

body {
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 0 0;
  width: 100%;
  font-size: 13pt;
  font-family: Inter, sans-serif;
  color: var(--text-color);
  background: var(--background-color);
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  body {
    font-size: 12pt;
  }
}

:root {
  --background-color: hsl(from var(--accent-1) h 2 5);
  --dark-1: hsl(from var(--accent-1) h 3 13);
  --dark-2: hsl(from var(--accent-1) h 10 20);
  --dark-3: #383f47; /*Select color*/
  --light-3: #474747;
  --light-2: #7e7e7e; /*Disabled color*/
  --light-1: #9e9e9e; /*Link color*/
  --accent-1: #5f8787; /*Link color*/
  --accent-2: hsl(from var(--accent-1) h calc(s + 25) l); /*Link color*/
  --white: hsl(from var(--accent-1) h 15 93);
  --text-color: var(--white);
}

.bordered, .btn, #linkbox .nav-btn, .render, article {
  border: solid 2px var(--dark-2);
  box-sizing: border-box;
  border-radius: 5px;
}

.asterism {
  display: inline-block;
  margin: 0;
  color: var(--accent-2);
  transform: rotate(60deg);
}

#fr-title {
  display: inline-block;
  width: fit-content;
  margin: 0;
  margin-right: auto;
}
@media (max-width: 600px) {
  #fr-title {
    margin-right: 1rem;
  }
}

#content {
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: top;
  flex-direction: row;
  height: 100%;
  position: relative;
  left: calc(0.5 * -136px);
}
@media (max-width: 600px) {
  #content {
    left: 0;
    margin: 8px;
    top: -1px;
  }
}

#title {
  text-wrap: nowrap;
  display: flex;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}

article {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--dark-1);
  width: 100%;
  max-width: 700px;
  border-top-left-radius: 0;
  padding: 2rem;
}
@media (max-width: 600px) {
  article {
    padding: 1rem;
  }
}
article > section:first-of-type {
  margin-top: max(0cap, 1.25cap);
  position: relative;
}

.render {
  position: relative;
  width: 100%;
  border-radius: 5px;
  margin: 5px 0px;
}

#linkbox {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: fit-content;
  margin-right: -2px;
  gap: -1px;
}
@media (max-width: 600px) {
  #linkbox {
    position: absolute;
    margin-right: 0;
    right: 0;
  }
}
#linkbox .nav-btn {
  text-decoration: none;
}
#linkbox .nav-btn.selected {
  cursor: default;
}
#linkbox .nav-btn:not(.selected):is([href], [onclick]) {
  transition: 0.1s;
  cursor: pointer;
}
#linkbox .nav-btn:not(.selected):is([href], [onclick]):hover {
  background-color: var(--dark-2);
}
#linkbox .nav-btn {
  color: var(--text-color);
  background-color: var(--dark-1);
  justify-content: center;
  text-align: center;
  padding: 5px 10px;
  border-radius: 0;
  position: relative;
  width: 136px;
}
#linkbox .nav-btn.selected::after {
  content: "";
  width: 6px;
  height: 100%;
  background-color: var(--accent-2);
  display: block;
  right: 0;
  z-index: 4;
  top: 0px;
  position: absolute;
}
#linkbox .nav-btn:last-child {
  border-bottom-left-radius: 5px;
}
#linkbox .nav-btn:not(:first-child) {
  margin-top: -2px;
}
#linkbox .nav-btn:first-child {
  border-top-left-radius: 5px;
}
@media (max-width: 600px) {
  #linkbox .nav-btn:first-child {
    border-top-left-radius: 0;
  }
}

#info_text {
  text-align: left;
}

tt {
  letter-spacing: -0.5pt;
}

.unselectable, .projects > div, .social, .asterism, #linkbox .nav-btn {
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}

.btn {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  background: var(--background-color);
  border-color: var(--dark-2);
  border-style: solid;
  border-width: 2px;
  border-radius: 5px;
  font-size: 11pt;
  color: var(--white);
  user-select: none;
  user-focus: none;
  box-sizing: border-box;
  height: 48px;
  text-decoration: none;
  padding: 7px;
}

.btn:hover {
  border-color: #6E7681;
  background-color: #1a1a1a;
  cursor: pointer;
}

.btn:active {
  border-color: #6E7681;
  background-color: var(--background-color);
}

#links {
  display: flex;
  width: 100%;
  align-self: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.social {
  width: fit-content;
  text-decoration: none;
}
.social.selected {
  cursor: default;
}
.social:not(.selected):is([href], [onclick]) {
  transition: 0.1s;
  cursor: pointer;
}
.social:not(.selected):is([href], [onclick]):hover {
  background-color: var(--dark-2);
}
.social {
  gap: 10px;
}
@media (max-width: 600px) {
  .social {
    gap: 5px;
  }
}
.social {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: calc(2 * 5px);
  border-radius: 5px;
  height: 20px;
}
.social a {
  color: var(--accent-2);
}

.link-btn {
  position: relative;
  min-height: 46px;
  min-width: 146px;
  margin: 3px;
  text-decoration: none;
}

input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  display: inline-grid;
  background-color: #111111;
  margin: 0 0 0 4px;
  font: inherit;
  line-height: 5px;
  align-self: center;
  color: currentColor;
  width: 13px;
  height: 13px;
  border: 2px solid #6b6b6b;
  border-radius: 50%;
  place-content: center;
}

input[type=radio]::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 10px 10px #999999;
}

input[type=radio]:checked::before {
  transform: scale(1);
}

.slider {
  left: 1%;
  -webkit-appearance: none;
  margin: 0;
  appearance: none;
  height: 10%;
  width: 100%;
  border-radius: 5px;
  min-height: 10px;
  max-height: 10px;
  outline: none;
  top: 2%;
  color: #ffffff;
  background-color: #222222;
  border-color: #222222;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #424242;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #424242;
  cursor: pointer;
}

.projects {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.projects > div > h3 {
  margin-top: 0;
}

.projects > div {
  text-decoration: none;
}
.projects > div.selected {
  cursor: default;
}
.projects > div:not(.selected):is([href], [onclick]) {
  transition: 0.1s;
  cursor: pointer;
}
.projects > div:not(.selected):is([href], [onclick]):hover {
  background-color: var(--dark-2);
}
.projects > div {
  border-radius: 5px;
  padding: 5px;
}

.options-container {
  top: 2%;
  left: 0.25%;
  height: 10%;
  gap: 10%;
  justify-content: center;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-flow: row nowrap;
  width: 100%;
}

.mobile-image {
  display: none;
}

table {
  border: var(--dark-1);
  table-layout: fixed;
  border-collapse: collapse;
}

th, td {
  padding: 5px 20px;
  border: 1px solid var(--dark-2);
  border-radius: 2px;
}

th {
  border-bottom: 2px solid var(--dark-2);
  border-radius: 2px;
}

tbody tr:nth-child(odd) {
  background-color: var(--dark-1);
}

hr {
  border: 0;
  height: 2px;
  width: 100%;
  background: var(--dark-3);
}

a {
  color: var(--light-1);
}

kbd {
  background-color: var(--dark-1);
  border-radius: 5px;
  padding: 4px;
  color: var(--white);
  font-size: 11.25pt;
  width: fit-content;
}

code {
  font-size: 11pt;
}

sup, sub {
  display: inline-block;
  font-size: 70%;
}

.section-link {
  opacity: 0;
  cursor: pointer;
  text-decoration: none;
  position: absolute;
  translate: -1ch;
}

ul {
  list-style-type: "∗ ";
}

h2, h3, h4 {
  font-variant: small-caps;
}

h1:hover .section-link, h2:hover .section-link, h3:hover .section-link, h4:hover .section-link, h5:hover .section-link, h6:hover .section-link {
  opacity: initial;
}

h1, h2, h3, h4, h5, h6 {
  scroll-margin-top: 10vh;
}

.section-link:hover {
  opacity: initial;
}

div.footnote {
  display: block;
  font-size: 10pt;
  margin: 0;
  padding: 0;
  width: 100%;
}

a.footnote {
  color: var(--light-1);
  cursor: pointer;
  text-decoration: none;
}

li.check-list {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
  vertical-align: middle;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 25px;
}

blockquote {
  border-left: 3px solid var(--dark-2);
  padding: 0.05em 10px;
  margin: 5px;
  min-width: 500px;
  width: fit-content;
  background-color: var(--dark-1);
  border-radius: 0 5px 5px 0;
}

li.check-list::before {
  content: "";
  outline: 3px solid var(--dark-2);
  border-radius: 1px;
  width: 10px;
  height: 10px;
  color: var(--white);
  font-size: 11pt;
  margin-right: 3px;
  display: inline-block;
  vertical-align: 1px;
}

li.check-list.checked::before {
  border: 2px solid var(--background-color);
  width: 6px;
  height: 6px;
  background-color: var(--dark-3);
}

ul:has(> li.check-list) {
  padding-left: 22px;
}

mark {
  background-color: var(--light-3);
  border-radius: 5px;
  padding: 2px 3px;
  color: var(--white);
  width: fit-content;
}

pre:has(> code) {
  background-color: var(--dark-1);
  border-radius: 5px;
  padding: 5px 8px !important;
  color: var(--white);
  width: fit-content;
}

/* desert scheme ported from vim to google prettify */
pre.prettyprint {
  display: block;
  background-color: #1b1b1b;
  border: none !important;
}

pre .nocode {
  background-color: none;
  color: #000;
}

pre .str {
  color: #ffa0a0;
}

/* string  - pink */
pre .kwd {
  color: #f0e68c;
  font-weight: bold;
}

pre .com {
  color: #87ceeb;
}

/* comment - skyblue */
pre .typ {
  color: #98fb98;
}

/* type    - lightgreen */
pre .lit {
  color: #cd5c5c;
}

/* literal - darkred */
pre .pun {
  color: #fff;
}

/* punctuation */
pre .pln {
  color: #fff;
}

/* plaintext */
pre .tag {
  color: #f0e68c;
  font-weight: bold;
}

/* html/xml tag    - lightyellow */
pre .atn {
  color: #bdb76b;
  font-weight: bold;
}

/* attribute name  - khaki */
pre .atv {
  color: #ffa0a0;
}

/* attribute value - pink */
pre .dec {
  color: #98fb98;
}

/* Specify class=linenums on a pre to get line numbering */
ol.linenums {
  margin-top: 0;
  margin-bottom: 0;
  color: #AEAEAE;
}

/* IE indents via margin-left */
li.L0, li.L1, li.L2, li.L3, li.L5, li.L6, li.L7, li.L8 {
  list-style-type: none;
}

/* Alternate shading for lines */
@media print {
  pre.prettyprint {
    background-color: none;
  }
  pre .str, code .str {
    color: #060;
  }
  pre .kwd, code .kwd {
    color: #006;
    font-weight: bold;
  }
  pre .com, code .com {
    color: #600;
    font-style: italic;
  }
  pre .typ, code .typ {
    color: #404;
    font-weight: bold;
  }
  pre .lit, code .lit {
    color: #044;
  }
  pre .pun, code .pun {
    color: #440;
  }
  pre .pln, code .pln {
    color: #000;
  }
  pre .tag, code .tag {
    color: #006;
    font-weight: bold;
  }
  pre .atn, code .atn {
    color: #404;
  }
  pre .atv, code .atv {
    color: #060;
  }
}

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