body {
    margin: 0;
    padding: 15px 20px;
    min-height: 99%;
    width: 100%;
    min-width: 550px;
    color: #ebdbb2; /* Gruvbox foreground */
    background: #282828; /* Gruvbox dark background */
    font-family: cursor, monospace;
    overflow-x: hidden;
}

::selection {
    color: #282828; /* Gruvbox background */
    background-color: #b8bb26; /* Gruvbox bright green */
}

::-moz-selection {
    color: #282828; /* Gruvbox background */
    background-color: #b8bb26; /* Gruvbox bright green */
}

textarea {
    left: -1000px;
    position: absolute;
}

b {
    font-weight: bold;
    text-decoration: underline;
}

/* Cursor Start */
.cursor {
    font-size: 12px;
    color: #ebdbb2; /* Gruvbox foreground */
    background-color: #ebdbb2; /* Gruvbox foreground */
    position: relative;
    opacity: 1;
    height: 1.5em;
    width: 10px;
    max-width: 10px;
    transform: translateY(4px);
    overflow: hidden;
    text-indent: -5px;
    display: inline-block;
    text-decoration: blink;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

#command {
    cursor: text;
    height: 50px;
    color: #ebdbb2; /* Gruvbox foreground */
}

#liner {
    line-height: 1.3em;
    margin-top: -2px;
    animation: show 0.5s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

#liner::before {
    color: #b8bb26; /* Gruvbox bright green */
    content: "user@zvdy.com:~$";
}

#liner.password::before {
    content: "Password:";
}

@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* Cursor End */

p {
    display: block;
    line-height: 1.3em;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    letter-spacing: 0.05em;
    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: #fabd2f; /* Gruvbox bright yellow */
}

.color2 {
    color: #d3869b; /* Gruvbox bright purple */
}

.command {
    color: #83a598; /* Gruvbox bright blue */
    text-shadow: 0 0 5px #458588; /* Gruvbox blue */
}

.error {
    color: #fb4934; /* Gruvbox bright red */
}

.white {
    color: #fbf1c7; /* Gruvbox light foreground */
}

.inherit,
a {
    color: #8ec07c; /* Gruvbox bright aqua */
}

a {
    text-decoration: inherit;
}

a:hover {
    background: #458588; /* Gruvbox blue */
    color: #fbf1c7; /* Gruvbox light foreground */
}

a:focus {
    outline: 0;
}