* {
    /* terminal font family */
    font-family: "Lucida Console", Monaco, monospace;
    font-size: medium;
    color: white;
    line-height: 25px;
}

body {
    padding: 0;
    margin: 20px;
    background-color: #161B1E;    
}

p {
    margin: 0;
}

.command-line {
    display: flex;
    flex-direction: row;
}

input {
    caret-color: #00FFFF;
}

#text-input {
    border: none;
    height: 22px;
    width: 60vw;
    margin-left: 7px;
    background: transparent;
}

#text-input:focus {
    outline: none;
}
.command {
    color: #00FFFF;
    text-shadow: 0 0 5px #00FFFF; 
}

.user {
    color: #00FF00;
}

.system {
    color: #ff9c9c; 
    margin: 25px;
}

.hightlight {
    color: #ffffff;
    font-weight: bold;
}

pre {
    line-height: 17px;
}

a {
    color:white;
}

a:hover {
    color: black;
    background: #00ffff;
}