body
{font-family: Consolas,monaco,monospace;
color: lightgreen;
font-size: 15px;
}


#terminal_h
{background-color: black;
position: absolute;
top: 0px;
left: 0px;
height: 100vh;
width: 100vw;
overflow-y: auto;
overflow-x: hidden;
z-index: 5}

#terminal
{padding: 7px;
position: relative}


.func
{color: lightgreen}

.important
{color: purple}

.default
{color: white}

.string
{color: brown}

.bold
{color: blue;
font-weight: bold;}

.number
{color: rgb(14, 218, 14)}

.parameters
{color: yellow}







.terminal-line-container {
    display: flex;
    white-space: pre;
    align-items: center;
    min-height: 1em;
}

.input-line
{
    color: lightgreen;
    font-weight: normal;
    outline: none;
    white-space: pre-wrap;
    caret-color: white; 
    flex-grow: 1;
}



#terminal_h::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

#terminal_h::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-radius: 10px;
}

#terminal_h::-webkit-scrollbar-thumb {
  background: lightgreen;
  border-radius: 10px;
  border: 1px solid black;
}

#terminal_h::-webkit-scrollbar-thumb:hover {
  background: #90ee90;
}

#terminal_h {
  scrollbar-width: thin;
  scrollbar-color: lightgreen #0a0a0a;
}