html {

}
body{
    background-color: black;
}
#input{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 2em);
    border: none;
    background-color: black;
    color: lime;
    font-size: 1em;
    font-family: monospace;
    padding: 1em;

    margin: 0;
}
#input:focus{
    outline: 0;
}
#lines{
    height: calc(100vh - 3em);
    overflow: auto;
}
p{
    color: lime;
    font-size: 1em;
    font-family: monospace;
}
#game{
    width: 80%;
    height: 80%;
    position: fixed;
    top: 10%;
    left: 10%;
    border: none;
}
