html {

    background: #0414a7 ;
    background: -moz-linear-gradient(-45deg,  #0414a7 0%, #370667 100%);
    background: -webkit-linear-gradient(-45deg,  #00349d 0%,#370667 100%);
    background: linear-gradient(135deg,  #0414a7 0%,#370667 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0414a7', endColorstr='#370667',GradientType=1 );
    height: 100vh;
}
body {
    color: #fff;
    font-family: monospace;
    margin: 0;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s ease all;
}

.terminal {
    width: 100%;
    height: 100%;
    padding: 0px;
    box-sizing: border-box;
}

.output {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 0px;
    color: #fff;
    
}

form {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    color: #fff;

}

.prompt {
    margin-right: 10px;
}

#command-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
}

.hidden {
    display: none;
}