#terminal-window {
    width: 500px;
    height: 300px;
    background: black;
    color: green;
    font-family: monospace;
    display: none;
    flex-direction: column;
    border: 2px solid #555;
}
#terminal-window .window-content{
	height: calc(100% - 25px);
}
#terminal-output {
    height: 80%;
    overflow-y: auto;
    white-space: pre-wrap;
	margin: 0
}

#terminal-input {
    width: 99%;
    background: black;
    color: green;
    border: none;
    outline: none;
    font-family: monospace;
}
