body {
    background-color: #050513;
}

h1 {
    font-family: 'PT Mono', monospace;
    color: white;
}

p {
    /*display: none;*/
    text-align: left;
    line-height: 2rem;
}

:root {
    color-scheme: dark;
}

/* width */
::-webkit-scrollbar {
    width: 20px;
}
  
  /* Track */
::-webkit-scrollbar-track {
    background: #3a3a3a;
}
  
  /* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(29, 29, 29);
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(0, 0, 0);
}

.terminal,
#terminal-input {
    width: 100%;
    color: limegreen;
    font-family: monospace, sans-serif;
    letter-spacing: 1px;
    font-size: 16px;
    text-align: left;
    overflow-y: scroll;
}

.terminal {
    background-color: #222222;
    display: flex;
    flex-direction: column;
    height: 70vh;
}

.terminal-output,
#terminal-prompt {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

label[for="terminal-input"] {
    width: auto;
    min-width: fit-content;
    margin: 5px;
}

#terminal-input {
    background-color: transparent;
    border: none;
}

#terminal-input:active,
#terminal-input:focus-within,
#terminal-input:focus {
    outline: none;
}