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

html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    background-color: #001800;
    font-family: 'apple_ii';
    color: #aea;
    margin: 0;
    padding: 16px;
    box-sizing: border-box;
}

body::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

.input-line {
    caret-color: transparent;
    user-select: none;
}

.input-line:focus {
    outline: none;
}

#loading {
    text-align: center;
    height: 100%;
    align-content: center;
}

#console {
    word-break: break-word;
    font-family: 'apple_ii';
    margin: 0;
    overflow: hidden;
    text-wrap: auto;
    height: 100%;
}

#app {
    display: none;
    height: 100%;
    width: 100%;
}

#loading, .loaded {
    display: none;
}

#app, .loaded {
    display: block;
}

#lead {
}

#cursor {
}