@charset "UTF-8";
:root {
  --global-font-size: 15px;
  --global-line-height: 1.4em;
  --global-space: 10px;
  --font-stack: "Menlo", "Monaco", "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", serif;
  --mono-font-stack: "Menlo", "Monaco", "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", serif;
  --background-color: #fff;
  --page-width: 60em;
  --font-color: #151515;
  --invert-font-color: #fff;
  --primary-color: #1a95e0;
  --secondary-color: #727578;
  --error-color: #d20962;
  --progress-bar-background: #727578;
  --progress-bar-fill: #151515;
  --code-bg-color: #e8eff2;
  --input-style: solid;
  --display-h1-decoration: none;
  --block-background-color: var(--background-color);
}

* {
  box-sizing: border-box;
  text-rendering: geometricprecision;
}

*::selection {
  background: var(--primary-color);
  color: var(--invert-font-color);
}

body {
  font-size: var(--global-font-size);
  color: var(--font-color);
  line-height: var(--global-line-height);
  margin: 0;
  font-family: var(--font-stack);
  word-wrap: break-word;
  background-color: var(--background-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
  line-height: var(--global-line-height);
}

a {
  cursor: pointer;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  background-color: var(--primary-color);
  color: var(--invert-font-color);
}

em {
  font-size: var(--global-font-size);
  font-style: italic;
  font-family: var(--font-stack);
  color: var(--font-color);
}

blockquote,
code,
em,
strong {
  line-height: var(--global-line-height);
}

blockquote,
code,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
header,
li,
ol,
p,
section,
ul,
.logo {
  float: none;
  margin: 0;
  padding: 0;
}

blockquote,
h1,
ol,
p,
ul,
.logo {
  margin-top: calc(var(--global-space) * 2);
  margin-bottom: calc(var(--global-space) * 2);
}

h1,
.logo {
  position: relative;
  padding: calc(var(--global-space) * 2) 0 calc(var(--global-space) * 2);
  margin: 0;
  overflow: hidden;
  font-weight: 600;
}

h1::after {
  content: "====================================================================================================";
  position: absolute;
  bottom: 5px;
  left: 0;
  display: var(--display-h1-decoration);
}

h1 + *,
.logo + * {
  margin-top: 0;
}

h2,
h3,
h4,
h5,
h6 {
  position: relative;
  margin-bottom: var(--global-line-height);
  font-weight: 600;
}

blockquote {
  position: relative;
  padding-left: calc(var(--global-space) * 2);
  overflow: hidden;
}

blockquote::after {
  content: ">\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>\a>";
  white-space: pre;
  position: absolute;
  top: 0;
  left: 0;
  line-height: var(--global-line-height);
  color: #9ca2ab;
}

blockquote > *:last-child {
  margin-bottom: 0;
}

code {
  font-weight: inherit;
  background-color: var(--code-bg-color);
  font-family: var(--mono-font-stack);
}

code::after,
code::before {
  content: "`";
  display: inline;
}

pre code::after,
pre code::before {
  content: "";
}

pre {
  display: block;
  word-break: break-all;
  word-wrap: break-word;
  color: var(--secondary-color);
  background-color: var(--block-background-color);
  border: 1px solid var(--secondary-color);
  padding: var(--global-space);
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -o-pre-wrap;
}

pre code {
  overflow-x: scroll;
  padding: 0;
  margin: 0;
  display: inline-block;
  min-width: 100%;
  font-family: var(--mono-font-stack);
  background-color: var(--block-background-color);
}

.terminal blockquote,
.terminal h1,
.terminal h2,
.terminal h3,
.terminal h4,
.terminal h5,
.terminal h6,
.terminal strong,
.terminal .logo {
  font-size: var(--global-font-size);
  font-style: normal;
  font-family: var(--font-stack);
}

.terminal code {
  font-size: var(--global-font-size);
  font-style: normal;
}

.terminal-prompt {
  position: relative;
  white-space: nowrap;
}

.terminal-prompt::before {
  content: "> ";
}

.terminal-prompt::after {
  content: "";
  animation: cursor 800ms infinite;
  background: var(--primary-color);
  border-radius: 0;
  display: inline-block;
  height: 1em;
  margin-left: 0.2em;
  width: 3px;
  bottom: -2px;
  position: relative;
}

@keyframes cursor {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cursor {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
li,
li > ul > li {
  position: relative;
  display: block;
  padding-left: calc(var(--global-space) * 2);
}

nav > ul > li {
  padding-left: 0;
}

li::after {
  position: absolute;
  top: 0;
  left: 0;
}

ul > li::after {
  content: "-";
}

nav ul > li::after {
  content: "";
}

ol li::before {
  content: counters(item, ".") ". ";
  counter-increment: item;
}

ol ol li::before {
  content: counters(item, ".") " ";
  counter-increment: item;
}

.terminal-menu li::after,
.terminal-menu li::before {
  display: none;
}

ol {
  counter-reset: item;
}

ol li:nth-child(n+10)::after {
  left: -7px;
}

ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

.terminal-menu {
  width: 100%;
}

.terminal-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

ul ul {
  margin-top: 0;
  margin-bottom: 0;
}

.terminal-menu ul {
  list-style-type: none;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-grow: 1;
  font-size: var(--global-font-size);
  margin-top: 0;
}

.terminal-menu li {
  display: flex;
  margin: 0 0 0.5em;
  padding: 0;
}

ol.terminal-toc li {
  border-bottom: 1px dotted var(--secondary-color);
  padding: 0;
  margin-bottom: 15px;
}

.terminal-menu li:last-child {
  margin-bottom: 0;
}

ol.terminal-toc li a {
  margin: 4px 4px 4px 0;
  background: var(--background-color);
  position: relative;
  top: 6px;
  text-align: left;
  padding-right: 4px;
}

.terminal-menu li a:not(.btn) {
  text-decoration: none;
  display: block;
  width: 100%;
  border: none;
  color: var(--secondary-color);
}

.terminal-menu li a.active {
  color: var(--font-color);
}

.terminal-menu li a:hover {
  background: none;
  color: inherit;
}

ol.terminal-toc li::before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  position: absolute;
  right: 0;
  background: var(--background-color);
  padding: 4px 0 4px 4px;
  bottom: -8px;
}

ol.terminal-toc li a:hover {
  background: var(--primary-color);
  color: var(--invert-font-color);
}

hr {
  position: relative;
  overflow: hidden;
  margin: calc(var(--global-space) * 4) 0;
  border: 0;
  border-bottom: 1px dashed var(--secondary-color);
}

p {
  margin: 0 0 var(--global-line-height);
}

.container {
  max-width: var(--page-width);
}

.container,
.container-fluid {
  margin: 0 auto;
  padding: 0 calc(var(--global-space) * 2);
}

img {
  max-width: 100%;
}

.progress-bar {
  height: 8px;
  background-color: var(--progress-bar-background);
  margin: 12px 0;
}

.progress-bar.progress-bar-show-percent {
  margin-top: 38px;
}

.progress-bar-filled {
  background-color: var(--progress-bar-fill);
  height: 100%;
  transition: width 0.3s ease;
  position: relative;
  width: 0;
}

.progress-bar-filled::before {
  content: "";
  border: 6px solid transparent;
  border-top-color: var(--progress-bar-fill);
  position: absolute;
  top: -6px;
  right: -6px;
}

.progress-bar-filled::after {
  color: var(--progress-bar-fill);
  content: attr(data-filled);
  display: block;
  font-size: 12px;
  white-space: nowrap;
  position: absolute;
  border: 6px solid transparent;
  top: -32px;
  right: 0;
  transform: translateX(50%);
}

.progress-bar-no-arrow > .progress-bar-filled::before,
.progress-bar-no-arrow > .progress-bar-filled::after {
  content: "";
  display: none;
  visibility: hidden;
  opacity: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--global-line-height) 0;
  color: var(--font-color);
  font-size: var(--global-font-size);
}

table td,
table th {
  vertical-align: top;
  border: 1px solid var(--font-color);
  line-height: var(--global-line-height);
  padding: calc(var(--global-space) / 2);
  font-size: 1em;
}

table thead tr th {
  font-size: 1em;
  vertical-align: middle;
  font-weight: 700;
}

table tfoot tr th {
  font-weight: 500;
}

table caption {
  font-size: 1em;
  margin: 0 0 1em;
}

.form {
  width: 100%;
}

fieldset {
  border: 1px solid var(--font-color);
  padding: 1em;
}

label {
  font-size: 1em;
  color: var(--font-color);
}

input[type=email],
input[type=text],
input[type=number],
input[type=password],
input[type=search],
input[type=date],
input[type=time] {
  border: 1px var(--input-style) var(--font-color);
  width: 100%;
  padding: 0.7em 0.5em;
  font-size: 1em;
  font-family: var(--font-stack);
  /* stylelint-disable */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* stylelint-enable */
  appearance: none;
  border-radius: 0;
}

input[type=email]:active,
input[type=text]:active,
input[type=number]:active,
input[type=password]:active,
input[type=search]:active,
input[type=date]:active,
input[type=time]:active,
input[type=email]:focus,
input[type=text]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=date]:focus,
input[type=time]:focus {
  outline: none;
  /* stylelint-disable */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* stylelint-enable */
  appearance: none;
  border: 1px solid var(--font-color);
}

input[type=text]:not(:placeholder-shown):invalid,
input[type=email]:not(:placeholder-shown):invalid,
input[type=password]:not(:placeholder-shown):invalid,
input[type=search]:not(:placeholder-shown):invalid,
input[type=number]:not(:placeholder-shown):invalid,
input[type=date]:not(:placeholder-shown):invalid,
input[type=time]:not(:placeholder-shown):invalid {
  border-color: var(--error-color);
}

input,
textarea {
  color: var(--font-color);
  background-color: var(--background-color);
}

input::placeholder,
textarea::placeholder {
  color: var(--secondary-color) !important;
  opacity: 1;
}

textarea {
  height: auto;
  width: 100%;
  resize: none;
  border: 1px var(--input-style) var(--font-color);
  padding: 0.5em;
  font-size: 1em;
  font-family: var(--font-stack);
  appearance: none;
  border-radius: 0;
}

textarea:focus {
  outline: none;
  /* stylelint-disable */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* stylelint-enable */
  appearance: none;
  border: 1px solid var(--font-color);
}

textarea:not(:placeholder-shown):invalid {
  border-color: var(--error-color);
}

select {
  border: 1px var(--input-style) var(--font-color);
  width: 100%;
  padding: 0.7em 0.5em;
  font-size: 1em;
  font-family: var(--font-stack);
  color: var(--font-color);
  border-radius: 0;
  /* stylelint-disable */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* stylelint-enable */
  background-color: var(--background-color);
  background-image: url("data:image/svg+xml;utf8,<svg fill='currentColor' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.5em bottom 0.5em;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid var(--font-color);
  -webkit-text-fill-color: var(--font-color);
  box-shadow: 0 0 0 1000pxx var(--invert-font-color) inset;
  transition: background-color 5000ss ease-in-out 0s;
}

.form-group {
  margin-bottom: var(--global-line-height);
  overflow: auto;
}

.btn {
  border-style: solid;
  border-width: 1px;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  padding: 0.65em 2em;
  font-size: 1em;
  font-family: inherit;
  user-select: none;
  position: relative;
  z-index: 1;
}

.btn:active {
  box-shadow: none;
}

.btn.btn-ghost {
  border-color: var(--font-color);
  color: var(--font-color);
  background-color: transparent;
}

.btn.btn-ghost:focus,
.btn.btn-ghost:hover {
  border-color: var(--tertiary-color);
  color: var(--tertiary-color);
  z-index: 2;
}

.btn.btn-ghost:hover {
  background-color: transparent;
}

.btn-block {
  width: 100%;
  display: flex;
}

.btn-default {
  background-color: var(--font-color);
  border-color: var(--invert-font-color);
  color: var(--invert-font-color);
}

.btn-default:hover,
.btn-default:focus:not(.btn-ghost) {
  background-color: var(--secondary-color);
  color: var(--invert-font-color);
}

.btn-default.btn-ghost:focus,
.btn-default.btn-ghost:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  z-index: 2;
}

.btn-error {
  color: var(--invert-font-color);
  background-color: var(--error-color);
  border: 1px solid var(--error-color);
}

.btn-error:hover,
.btn-error:focus:not(.btn-ghost) {
  background-color: var(--error-color);
  border-color: var(--error-color);
}

.btn-error.btn-ghost {
  border-color: var(--error-color);
  color: var(--error-color);
}

.btn-error.btn-ghost:focus,
.btn-error.btn-ghost:hover {
  border-color: var(--error-color);
  color: var(--error-color);
  z-index: 2;
}

.btn-primary {
  color: var(--invert-font-color);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus:not(.btn-ghost) {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary.btn-ghost {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-primary.btn-ghost:focus,
.btn-primary.btn-ghost:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  z-index: 2;
}

.btn-small {
  padding: 0.5em 1.3em !important;
  font-size: 0.9em !important;
}

.btn-group {
  overflow: auto;
}

.btn-group .btn {
  float: left;
}

.btn-group .btn-ghost:not(:first-child) {
  margin-left: -1px;
}

.terminal-card {
  border: 1px solid var(--secondary-color);
}

.terminal-card > header {
  color: var(--invert-font-color);
  text-align: center;
  background-color: var(--secondary-color);
  padding: 0.5em 0;
}

.terminal-card > div:first-of-type {
  padding: var(--global-space);
}

.terminal-timeline {
  position: relative;
  padding-left: 70px;
}

.terminal-timeline::before {
  content: " ";
  background: var(--secondary-color);
  display: inline-block;
  position: absolute;
  left: 35px;
  width: 2px;
  height: 100%;
  z-index: 400;
}

.terminal-timeline .terminal-card {
  margin-bottom: 25px;
}

.terminal-timeline .terminal-card::before {
  content: " ";
  background: var(--invert-font-color);
  border: 2px solid var(--secondary-color);
  display: inline-block;
  position: absolute;
  margin-top: 25px;
  left: 26px;
  width: 15px;
  height: 15px;
  z-index: 400;
}

.terminal-alert {
  color: var(--font-color);
  padding: 1em;
  border: 1px solid var(--font-color);
  margin-bottom: var(--global-space);
}

.terminal-alert-error {
  color: var(--error-color);
  border-color: var(--error-color);
}

.terminal-alert-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* stylelint-disable */
@media screen and (min-width: 960px) {
  /* stylelint-enable */
  label {
    display: block;
    width: 100%;
  }
  pre::-webkit-scrollbar {
    height: 3px;
  }
}
/* stylelint-disable */
@media screen and (min-width: 480px) {
  /* stylelint-enable */
  form {
    width: 100%;
  }
}
/* stylelint-disable */
@media screen and (min-width: 30rem) {
  /* stylelint-enable */
  .terminal-nav {
    flex-direction: row;
    align-items: center;
  }
  .terminal-menu ul {
    flex-direction: row;
    place-items: center flex-end;
    justify-content: flex-end;
    margin-top: calc(var(--global-space) * 2);
  }
  .terminal-menu li {
    margin: 0 2em 0 0;
  }
  .terminal-menu li:last-child {
    margin-right: 0;
  }
}
.terminal-media:not(:last-child) {
  margin-bottom: 1.25rem;
}

.terminal-media-left {
  padding-right: var(--global-space);
}

.terminal-media-left,
.terminal-media-right {
  display: table-cell;
  vertical-align: top;
}

.terminal-media-right {
  padding-left: var(--global-space);
}

.terminal-media-body {
  display: table-cell;
  vertical-align: top;
}

.terminal-media-heading {
  font-size: 1em;
  font-weight: 700;
}

.terminal-media-content {
  margin-top: 0.3rem;
}

.terminal-placeholder {
  background-color: var(--secondary-color);
  text-align: center;
  color: var(--font-color);
  font-size: 1rem;
  border: 1px solid var(--secondary-color);
}

figure > img {
  padding: 0;
}

.terminal-avatarholder {
  width: calc(var(--global-space) * 5);
  height: calc(var(--global-space) * 5);
}

.terminal-avatarholder img {
  padding: 0;
}

figure {
  margin: 0;
}

figure > figcaption {
  color: var(--secondary-color);
  text-align: center;
}

.terminal-banner {
  background-color: var(--font-color);
  color: var(--invert-font-color);
  padding: calc(var(--global-space) * 2);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.terminal-banner > .container {
  max-width: var(--page-width);
}

.terminal-banner > .container,
.terminal-banner > .container-fluid {
  margin: 0 auto;
  padding: 0;
}

/* stylelint-disable */
@media screen and (min-width: 30rem) {
  /* stylelint-enable */
  .terminal-banner {
    flex-direction: row;
  }
}
.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: var(--block-background-color);
  color: var(--font-color);
}

.hljs-comment,
.hljs-quote {
  color: var(--secondary-color);
}

.hljs-variable {
  color: var(--font-color);
}

/* stylelint-disable */
.hljs-keyword,
.hljs-selector-tag,
.hljs-built_in,
.hljs-name,
.hljs-tag {
  /* stylelint-enable */
  color: var(--primary-color);
}

.hljs-string,
.hljs-title,
.hljs-section,
.hljs-attribute,
.hljs-literal,
.hljs-template-tag,
.hljs-template-variable,
.hljs-type,
.hljs-addition {
  color: var(--secondary-color);
}

.hljs-string {
  color: var(--secondary-color);
}

.hljs-deletion,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-meta {
  color: var(--primary-color);
}

.hljs-doctag {
  color: var(--secondary-color);
}

.hljs-attr {
  color: var(--primary-color);
}

.hljs-symbol,
.hljs-bullet,
.hljs-link {
  color: var(--primary-color);
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

.c {
  color: #a29f90;
}

.err {
  color: #960050;
  background-color: #1e0010;
}

.k {
  color: #66d9ef;
}

.l {
  color: #ae81ff;
}

.n {
  color: #f8f8f2;
}

.o {
  color: #f92672;
}

.p {
  color: #f8f8f2;
}

.cm, .cp, .c1, .cs {
  color: #75715e;
}

.ge {
  font-style: italic;
}

.gs {
  font-weight: bold;
}

.kc, .kd {
  color: #66d9ef;
}

.kn {
  color: #f92672;
}

.kp, .kr, .kt {
  color: #66d9ef;
}

.ld {
  color: #e6db74;
}

.m {
  color: #ae81ff;
}

.s {
  color: #e6db74;
}

.na {
  color: #a6e22e;
}

.nb {
  color: #f8f8f2;
}

.nc {
  color: #a6e22e;
}

.no {
  color: #66d9ef;
}

.nd {
  color: #a6e22e;
}

.ni {
  color: #f8f8f2;
}

.ne, .nf {
  color: #a6e22e;
}

.nl, .nn {
  color: #f8f8f2;
}

.nx {
  color: #a6e22e;
}

.py {
  color: #f8f8f2;
}

.nt {
  color: #f92672;
}

.nv {
  color: #f8f8f2;
}

.ow {
  color: #f92672;
}

.w {
  color: #f8f8f2;
}

.mf, .mh, .mi, .mo {
  color: #ae81ff;
}

.sb, .sc, .sd, .s2 {
  color: #e6db74;
}

.se {
  color: #ae81ff;
}

.sh, .si, .sx, .sr, .s1, .ss {
  color: #e6db74;
}

.bp, .vc, .vg, .vi {
  color: #f8f8f2;
}

.il {
  color: #ae81ff;
}

.gu {
  color: #75715e;
}

.gd {
  color: #f92672;
}

.gi {
  color: #a6e22e;
}

:root {
  --font-stack: "SF Mono", "Menlo", "Monaco", "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace;
  --mono-font-stack: "SF Mono", "Menlo", "Monaco", "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace;
  --global-font-size: 13px;
  --heading-color: #3a3f3d;
  --background-color: #f4f2ef;
  --code-bg-color: #1e2120;
  --code-color: #f8f8f2;
  --code-inline-bg: rgba(0, 0, 0, .06);
  --code-inline-color: #555;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #1a1f1d;
    --font-color: #b0b8b4;
    --invert-font-color: #1a1f1d;
    --primary-color: #d4896a;
    --secondary-color: #7f8487;
    --error-color: #e06c75;
    --progress-bar-background: #3a3f3d;
    --progress-bar-fill: #d4d4d4;
    --code-bg-color: #0f1211;
    --code-color: white;
    --code-inline-bg: rgba(255, 255, 255, .08);
    --code-inline-color: #b0b4b8;
    --heading-color: #c8cdca;
  }
}
@media (prefers-color-scheme: light) {
  :root {
    --code-bg-color: #e8e6e3;
    --code-color: #333333;
  }
  pre {
    box-shadow: none;
  }
  .highlight {
    background: #e8e6e3;
    color: #333333;
  }
  .hll {
    background-color: #ffffcc;
  }
  .c, .ch, .cm, .cpf, .c1 {
    color: #60a0b0;
    font-style: italic;
  }
  .err {
    border: 1px solid #FF0000;
  }
  .k, .kc, .kd, .kn, .kr, .ow {
    color: #007020;
    font-weight: bold;
  }
  .o {
    color: #666666;
  }
  .cp, .kp, .nb, .ne, .bp {
    color: #007020;
  }
  .cs {
    color: #60a0b0;
    background-color: #fff0f0;
  }
  .gd {
    color: #A00000;
  }
  .ge {
    font-style: italic;
  }
  .gr {
    color: #FF0000;
  }
  .gh {
    color: #000080;
    font-weight: bold;
  }
  .gi {
    color: #00A000;
  }
  .go {
    color: #888888;
  }
  .gp {
    color: #c65d09;
    font-weight: bold;
  }
  .gs {
    font-weight: bold;
  }
  .gu {
    color: #800080;
    font-weight: bold;
  }
  .gt {
    color: #0044DD;
  }
  .kt {
    color: #902000;
  }
  .m, .mb, .mf, .mh, .mi, .mo, .il {
    color: #40a070;
  }
  .s, .na, .sa, .sb, .sc, .dl, .s2, .sh, .s1 {
    color: #4070a0;
  }
  .sd {
    color: #4070a0;
    font-style: italic;
  }
  .se {
    color: #4070a0;
    font-weight: bold;
  }
  .si {
    color: #70a0d0;
    font-style: italic;
  }
  .sx {
    color: #c65d09;
  }
  .sr {
    color: #235388;
  }
  .ss {
    color: #517918;
  }
  .nc, .nn {
    color: #0e84b5;
    font-weight: bold;
  }
  .no {
    color: #60add5;
  }
  .nd {
    color: #555555;
    font-weight: bold;
  }
  .ni {
    color: #d55537;
    font-weight: bold;
  }
  .nf, .fm {
    color: #06287e;
  }
  .nl {
    color: #002070;
    font-weight: bold;
  }
  .nt {
    color: #062873;
    font-weight: bold;
  }
  .nv, .vc, .vg, .vi, .vm {
    color: #bb60d5;
  }
  .w {
    color: #bbbbbb;
  }
}
body > header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

body > header {
  padding: 1.4em 1.5em;
}

body > footer {
  padding: 0.2em 1.5em;
}

article {
  padding: 0.7em 1.5em;
}

article:first-of-type {
  padding-top: 1.4em;
}

@media (min-width: 40em) {
  body > header {
    padding: 1.4em calc(34% - 12rem);
  }
  body > footer {
    padding: 0.2em calc(34% - 12rem);
  }
  article {
    padding: 0.7em calc(34% - 12rem);
  }
  article:first-of-type {
    padding-top: 1.4em;
  }
}
h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1em;
  overflow: visible;
  color: var(--heading-color);
}
h1 a, h2 a, h3 a {
  letter-spacing: inherit;
  margin-right: -0.1em;
  color: inherit;
}

article header h1 {
  padding: 0;
}

body > header h2 {
  margin: 0;
  letter-spacing: normal;
  white-space: nowrap;
}

body > header h2 a {
  color: var(--font-color);
}

body > header nav a {
  color: var(--primary-color);
  margin: 0 0.4em;
}

body > header {
  background: #141918;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body > header h2 a {
  color: #b0b8b4;
}

body > header nav a {
  color: #d4896a;
}

.archive li {
  padding: 0.1em 0;
  padding-left: 0;
  list-style: none;
  line-height: 1.2;
}

.archive li::after {
  content: none;
}

ul.archive {
  margin: 0;
  padding: 0;
}

.archive a {
  font-size: 1em;
}

.archive time {
  display: inline-block;
  width: 8em;
  margin: 0 0.5em 0 0;
  color: var(--secondary-color);
}

.year {
  min-width: 9em;
  display: inline-block;
  vertical-align: top;
  color: var(--secondary-color);
}

.archive li + li:has(.year) {
  margin-top: 1.4em;
}

img {
  max-width: 100%;
  height: auto;
}

.caption {
  font-size: 0.9em;
  font-style: italic;
  color: var(--secondary-color);
}

.image-container .caption {
  display: block;
}

.embed {
  position: relative;
  padding-bottom: 56.25%;
  margin: 1.5em 0;
}

.embed iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

@media (min-width: 70em) {
  .large img, .large.embed {
    max-width: 140%;
    margin-right: -20%;
    margin-left: -20%;
  }
  .embed.large {
    padding-bottom: 78.75%;
  }
}
a.ghost, a.gray, a.disabled {
  border-radius: 2px;
  padding: 0.4em 0.8em;
}

a.ghost {
  background: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-color) inset;
  color: var(--invert-font-color);
  transition: 0.1s;
}

a.ghost:hover {
  background: transparent;
  color: var(--primary-color);
}

a.gray, a.disabled {
  background: rgba(128, 128, 128, 0.08);
  transition: background, 0.2s;
}

a.gray:hover, a.disabled:hover {
  color: inherit;
}

a.gray:hover {
  background: rgba(128, 128, 128, 0.2);
}

pre, pre code {
  background: var(--code-bg-color);
  color: var(--code-color);
}

pre {
  border-radius: 2px;
  font-size: 0.95em;
  margin: 1.5em 0;
  padding: 1.2em;
  overflow-x: auto;
  border: none;
}

code {
  font-size: inherit;
}
code::before, code::after {
  content: none;
}

ul > li::after {
  content: "•";
}

article h2, article h3 {
  margin-bottom: 0;
}

h1 + ul, h2 + ul, h3 + ul, h1 + ol, h2 + ol, h3 + ol {
  margin-top: 0;
}

p code, li code {
  font-size: 0.95em;
  color: var(--code-inline-color);
  background: var(--code-inline-bg);
  border-radius: 2px;
  margin: 0 0.1em;
  padding: 0.15em 0.4em;
}

a:focus-visible {
  background: var(--primary-color);
  color: var(--invert-font-color) !important;
  outline: none;
  box-shadow: 0.15em 0 0 var(--primary-color), -0.15em 0 0 var(--primary-color);
  border-radius: 2px;
  text-decoration: none;
}

header time {
  color: var(--secondary-color);
}

table {
  width: auto;
}

sup.footnote, sup[id^=fnref] {
  vertical-align: baseline;
  font-size: inherit;
}

sup.footnote a, sup[id^=fnref] a {
  color: var(--primary-color);
}
sup.footnote a::before, sup[id^=fnref] a::before {
  content: "[";
}
sup.footnote a::after, sup[id^=fnref] a::after {
  content: "]";
}
sup.footnote a:hover, sup[id^=fnref] a:hover {
  color: var(--invert-font-color);
}

.reversefootnote {
  font-size: 0;
  background: none !important;
}
.reversefootnote::after {
  font-size: var(--global-font-size);
  content: "[^]";
}
.reversefootnote:hover::after {
  background: var(--primary-color);
  color: var(--invert-font-color);
}

.footnotes ol {
  counter-reset: none;
  list-style: decimal;
  padding-left: 1.5em;
}

.footnotes ol li {
  display: list-item;
  padding-left: 0.3em;
}

.footnotes ol li::before, .footnotes ol li::after {
  content: none;
}

.footnotes ol li > p {
  display: inline;
}

hr {
  border: 1px solid var(--secondary-color);
  opacity: 0.3;
  margin: 2.1em 0 0.7em;
}

.recommendations h2 {
  margin-top: 2em;
}

.recommendations h3 {
  margin-top: 1.4em;
  margin-bottom: 0.3em;
}

.recommendations > div {
  margin: 0.3em 0;
}

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