:root {
  --text-fg: #dedbe3;
  --body-bg: #1f1c24;
  --span-fg: #9d93ac;
  --corner-radius: 6px;
  --selection: #ff9e5c52;
  --link: #c6e9af;
  --visited: #5fd38d;
}

::selection {
  color: white;
  background-color: var(--selection);
}

body {
  margin: 0 auto;
  line-height: 1.5;
  color: var(--text-fg);
  background-color: var(--body-bg);
  text-align: center;
  font-family: sans-serif;
  font-size: 1.25rem;
}

a {
  color: var(--link);
}

a:visited {
  color: var(--visited);
}

code {
  font-size: 1.25rem;
  padding: 10px 16px;
  border-radius: var(--corner-radius);
  background-color: #131316ff;
}

.cmd {
  color: palegreen;
}

.arg {
  color: bisque;
}

.flag {
  color: darkgray;
}

#tea {
  margin: -160px 0 !important;
  bottom: 24px !important;
  float: initial !important;
  pointer-events: initial !important;
}

