* {
    /* font-family: 'Fira Code', monospace !important; */
    /* font-family: 'JetBrains Mono', 'Cascadia Code', 'Fira Code', monospace !important; */
    font-family: 'Fira Code', 'IBM Plex Mono', monospace !important;
    font-weight: 400;
    font-size: 12px;
    font-style: normal;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    margin: 0;
    padding: 15px 20px;
    min-height: 100vh;
    width: 100%;
    min-width: 550px;
    color: #d0e7f9;
    background: linear-gradient(180deg, #0b0c10 0%, #232946 100%);
    /* box-shadow: 0 0 0 2px #232946, inset 0 0 32px 0 #232946cc; */
    overflow-x: hidden;
}

::selection {
    /* color: #0b0c10;
    background-color: #B47EFF; */
    background-color: #BD93F992;
    color: #0b0c10;

}

::-moz-selection {
    color: #0b0c10;
    background-color: #B47EFF;
}

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

b {
    font-weight: bold;
}

.cursor {
    font-size: 12px;
    color: #d0e7f9;
    background-color: #e0e7ef;
    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: #d0e7f9;
}

#folder {
    cursor: text;
    height: 50px;
    color: #d0e7f9;
}

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

/* Aurora Purple */
#liner.password::before {
    content: "Password:";
    color: #bd93f9;
}

@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: #bd93f9;
}

.color2 {
    color: #9fffb3;
}

.command {
    color: #bd93f9;
    font-weight: bold;
    text-shadow: 0 0 5px #bd93f988;
}

.folder {
    color: #8be9fd;
    text-shadow: 0 0 5px #8be9fd;
}

.error {
    color: #f38ba8;
}

.while {
    color: #fff;
}

.inherit,
a {
    color: #8be9fd;
}

a {
    text-decoration: inherit;
    transition: color 0.2s, background 0.2s;
}

a:hover {
    /* background: #BD93F992; */
    color: #0b0c10;
    background: #B47EFF81;
}

a:focus {
    outline: 0;
}

/* Descriptions */
.description,
.command-desc,
.desc {
    color: #8be9fd;
    /* Gentle Cyan */
}

/* Section Dividers */
hr,
.divider {
    border: none;
    border-top: 2px solid #4c566a;
    margin: 16px 0;
    color: #4c566a;
    background: #4c566a;
    height: 2px;
}

/* ASCII Art Title Aurora Gradient */
pre,
.ascii-art,
.ascii-art-title {
    font-family: inherit;
    margin-bottom: 1em;
    background: linear-gradient(to bottom, #bd93f9 0%, #9fffb3 100%);
    /* background: linear-gradient(to right, #bb9af7, #7dcfff, #7aa2f7); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 12px #23294688;
    letter-spacing: 0.01em;
}



/* Responsive */
@media (max-width: 700px) {

    pre,
    .ascii-art-title {
        font-size: 0.95em;
        overflow-x: auto;
        word-break: break-word;
        white-space: pre-wrap;
    }
    
    body {
        padding: 2vw 1vw;
        font-size: 0.95em;
        min-width: 0;
    }

    #terminal,
    #command {
        padding: 0 2vw;
        font-size: 0.95em;
    }

    pre,
    .ascii-art-title {
        font-size: 0.85em;
        word-break: break-word;
    }

    #liner,
    #typer,
    .prompt {
        font-size: 0.95em;
    }

    textarea {
        font-size: 0.95em;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    body {
        font-size: 0.85em;
        padding: 1vw 0.5vw;
    }

    #terminal,
    #command {
        padding: 0 1vw;
        font-size: 0.85em;
    }

    pre,
    .ascii-art-title {
        font-size: 0.75em;
    }
}