body {
    margin: 0;
    padding: 0;
    background-color: #111111;
}

.seo-description {
    position:absolute;
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
    color: white;
    font-family: "PT Mono", monospace;
    font-size: 0.75em;
}

.console {
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    padding: 15px 10px;
    font-family: "PT Mono", monospace;
    font-size: 0.75em;
}

/* colors */
.console, .console a, .console a {
    color: #EEEEEE;
}
.console {
    background-color: #111111;
}
.console a {
    text-decoration: none;
}
.console a:hover {
    text-decoration: underline;
}

.console .command {
    line-height: 130%;
}

.console #cursor {
    min-width: 10px;
    display: inline-block;
    background-color: blue;
}

.console .userInput {
    border: none;
    outline: none;
}

.console #cursor.blink {
    border-bottom: 2px solid #EEEEEE;
}

.console .response {
    display: inline-block;
    padding-right: 7px;
}

.console .userInput {
    outline: none;
    border: none;
}