* {
    font-family: consolas, monospace;
    font-weight: 100;
}

h1 {
    font-weight: 400;
}

h1::before {
    content: '';
    font-weight: 500;
}

h2::before {
    content: '> ';
    font-weight: 500;
}

input {
    border: none;
    font-size: larger;
    cursor: block;
}

input:active {
    border: none;
    cursor: block;
}

input:focus {
    outline: none;
    cursor: block;
}

@media (prefers-color-scheme: light) {
    body {
      background: #FFF;
      color: #333;
    }

  }
  @media (prefers-color-scheme: dark) {
    body {
      background: #333;
      color: #FFF;
    }
  }