@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap');

/* Just Some Simple CSS /
/  by Ján Pšenák       */

:root {
    --text: #232323;
    --bg: #EEE;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #ccc;
    --bg: #131313;
  }
}

a {
  all: unset;
  text-decoration: underline;
  cursor: pointer;
}

body {
    margin: 40px auto;
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    max-width: 650px;
    padding: 0 10px;
    font-size: 18px;
    color: var(--text) !important;
    background-color: var(--bg);
}

.inline {
    display: inline-block;
}

.vl {
  display: inline-block;
  width: 2px;
  background-color: var(--text);
  margin: 0 10px;
  height: 1em;
  vertical-align: middle;
}

.selected {
  font-weight: 900;
}