body {
    animation: flicker 33.33ms infinite step-end;
    font-family: DOS, Consolas, 'Courier New', Courier, monospace;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 8px;
    padding-right: 8px;
}

hr {
  color: #ff6f00;
}

::selection {
  background-color: #ff6f00;
  color: black;
}

a:hover {
  color: #c02000;
}

ol {
    margin-left: 12px;
}

input {
    border: none;
    background-color: inherit;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: inherit;
}

.console-cursor {
    animation: blinker 500ms infinite step-end;
}

@keyframes flicker {
  50% {
    opacity: 95%;
  }
}

@keyframes blinker {
  50% {
    opacity: 0%;
  }
}

@font-face {
  font-family: "DOS";
  src: url('/font/font.ttf');
}