html {
    width: 100%;
    height: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Courier New", monospace;
    font-size: 10pt;
    line-height: 16px;
    vertical-align: bottom;
    color: #2C4;
}

body {
    background-color: #11251A;
    width: 100%;
    height: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Courier New", monospace;
    font-size: 10pt;
    line-height: 16px;
    vertical-align: bottom;
    color: #2C4;
    overflow-y: auto;
}

#terminal {
    top: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    cursor: default;
    box-sizing: border-box;
}

#caret {
    width: 8px;
    height: 16px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #2C4;
    animation: cursorBlink 0.5s steps(1, start) infinite normal;
    -webkit-animation: cursorBlink 0.5s steps(1, start) infinite normal;
}

#scanline-overlay {
    width: 100%;
    height: 100%;
    background-image: url('../overlay.png');
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
}

.terminal-line {
    white-space: pre;
    display: block;
    height: 16px;
}

.terminal-line-inverted {
    background-color: #2c4;
    color: #11251a;
    font-weight: bold;
}

.terminal-prompt {
    display: inline;
    float: left;
}

@keyframes cursorBlink {
    50% {visibility: visible}
    100% {visibility: hidden}
}

@keyframes fadeOut {
    0% {opacity: 1}
    100% {opacity: 0; display: none}
}

@-webkit-keyframes cursorBlink {
    50% {visibility: visible}
    100% {visibility: hidden}
}

@-webkit-keyframes fadeOut {
    0% {opacity: 1}
    100% {opacity: 0; display: none}
}