/* Fixed color palette */
/* #676f9d  (corrected invalid color) */
/* #424769 */
/* #2d3250 */
/* #f9b17a */

* {
    font-family: "JetBrains Mono", monospace;
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    margin: 0;
    padding: 15px 20px;
    min-height: 99%;
    width: 100%;
    min-width: 550px;
    color: #ebdbb2;
    background: #1e252e;
    overflow-x: hidden;
}

::selection {
    color: #2d3250;
    background-color: #f9b178;
}

::-moz-selection { /* Fixed incorrect selector */
    color: #1d1d21;
    background-color: #676f9d;
}

textarea {
    left: -1000px;
    position: absolute;
}

b {
    font-weight: bold;
}

.cursor {
    font-size: 12px;
    color: #ffffff;
    background-color: #ffffff;
    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: #c4c7d9;
}

#folder {
    cursor: text;
    height: 50px;
    color: #c4c7d9;
}

#liner {
    line-height: 1.3rem;
    margin-top: -2px;
    animation: show 0.5s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

#liner.password::before {
    content: "Password:";
}

@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

p {
    display: block;
    line-height: 1.3em;
    margin: 0;
    overflow: hidden;
    white-space: normal;
    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: #dcdccc;
}
.color2 {
    color: rgb(102, 142, 223);
}
.command {
    color: #61bfde;
    text-shadow: 0 0 5px #61bfde;
}
.folder {
    color: #61bfde;
    text-shadow: 0 0 5px #61bfde;
}

.error {
    color: #b89076;
}
.while {
    color: #fff;
}
.inherit,
a {
    color: #ff8037;
}
a {
    text-decoration: inherit;
}
a:hover {
    background:#b89076;
    color: #1c2140;
}
a:focus {
    outline: 0;
}
