.test {
  width: 2ch;
  height: 2em;
  overflow: hidden;
  visibility: hidden;
  height: 0;
}
* {
  line-height: 1em;
}

body {
  font-family: "Cascadia Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  
  color: #fab433;

  font-size: 25px;

  background-color: black;
  margin: 0;
  width: 100vw;
  height: 100vh;
}

a {
  color: #be6b0c;
}

a:hover {
  color: #fdbb6f;
}

#bezel {
  margin: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 0px;
  border-radius: 40px;
  overflow: hidden;
  border: 12px solid black;
  box-sizing: border-box;

}

.crt {
  filter: url("#nice-blur");
  background-color: #252525;

  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px;
  margin: -5px;

  overflow-y: scroll;
  overflow-x: hidden;
}

.crt::-webkit-scrollbar {
  display: none;
}


ul.todo {
  list-style: none;
}

ul.todo > li.done::before {
  content: "[x] ";
}
ul.todo > li::before {
  content: "[ ] ";
}