html, body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #0f0;
}

#cursor {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-left: 10px;
    background-color: transparent;
    color: #0f0;
    border: 0 none;
    font-family: monospace;
    box-sizing: border-box;
    outline: none;
    vertical-align: bottom;
}

#PS1 {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #0f0;
    background-color: #000;
    font-family: monospace;
    vertical-align: bottom;
}

#console {
    box-sizing: border-box;
    background-color: #000;
    color: #0f0;
    border: 0 none;
    font-family: monospace;
    outline: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    resize: none;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

