body { 
    margin: 0;
    padding: 15px 20px;
    min-height: 99%;
    width: 100%;
    min-width: 550px;
    color: #519975;
    background: #211D1B;
    font-family: cursor, Lucida Console;
    font-size: 12px;
    overflow-x: hidden;
    position: relative;
}
.matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}
::selection {
    color: #211830;
    background-color: #519975;
}
::-moz-selection {
    color: #211830;
    background-color: #519975;
}
textarea {
    left: -1000px;
    position: absolute;
}
b {
    font-weight: bold;
    text-decoration: underline;
}
.cursor {
    font-size: 14px;
    color: #73ABAD;
    background-color: #73ABAD;
    position: relative;
    opacity: 1;
    height: 1.5em;
    width: 10px;
    max-width: 10px;
    transform: translateY(4px);
    overflow: hidden;
    display: inline;
    animation: blinker 1s linear infinite;
    z-index: 2;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}
#command {
    cursor: text;
    height: 50px;
    color: #73ABAD;
    font-size: 12px; 
    position: relative;
    z-index: 2;
}
#terminal {
    position: relative;
    z-index: 2;
    font-size: 12px;
}
@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
#liner {
    display: inline-block;
    white-space: nowrap;
    font-size: 12px;
}
p {
    display: block;
    line-height: 1.3em;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.05em;
    font-size: 14px;
    animation: typing 0.5s steps(30, end);
}
.no-animation {
    animation: typing 0 steps(30, end);
}
.margin {
    margin-left: 20px;
}
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
.index {
    color: #DCDCCC;
    font-size: 14px; 
}
.color2 {
    color: #B89076;
    font-size: 14px; 
}
.command {
    color: #73ABAD;
    font-size: 14px;
}
.error {
    color: #B89076;
    font-size: 14px;
}
.white {
    color: #fff;
    font-size: 14px;
}
.inherit,
a {
    color: #9C8394;
    font-size: 14px;
}
a {
    text-decoration: inherit;
}
a:hover {
    background: #73ABAD;
    color: #211830;
}
a:focus {
    outline: 0;
}