@import "https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@200;300;400;600&family=Pixelify+Sans&family=VT323&display=swap";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
:root {
    font-family: IBM Plex Mono, monospace;
    font-weight: 200;
    --bg: #0c0623;
    --border: #ffade2;
    --text: #f8dde5;
    --prompt-default: #a5a7a7;
    --prompt-1: #fe6bc9;
    --prompt-2: #70fdff;
}
@keyframes typing {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}
html,
body {
    color: var(--text);
    background-color: var(--bg);
    height: 100%;
    font-size: 16px;
    display: block;
}
html {
    overflow: auto;
}
body {
    padding: 16px;
    box-sizing: border-box;
}
main {
    display: block;
    box-sizing: border-box;
    height: 100%;
    border: var(--border) solid 2px;
    border-radius: 2px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
main::-webkit-scrollbar {
    display: none;
}
p {
    display: block;
    line-height: 22px;
    animation: typing 0.5s steps(30, end) forwards;
    white-space: normal;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: anywhere;
}
div {
    line-height: 22px;
    word-break: break-word;
    overflow-wrap: anywhere;
}
@font-face {
    font-family: ascii;
    src: url(/assets/IBMPlexMono-Thin-23n5SbSi.ttf);
}
pre {
    margin: 0;
    padding: 0;
    line-height: 20px !important;
    color: #ff9951;
    font-family: ascii, monospace;
    white-space: pre;
    overflow-x: auto;
}
input {
    font-family: IBM Plex Mono, monospace;
    padding: 0;
    margin: 0;
    border: none;
    resize: none;
    outline: none;
    font-size: 16px;
    color: #ff7685;
    caret-color: var(--prompt-default);
    width: 50%;
}
a {
    color: #b6aaee;
}
a:hover {
    background-color: var(--border);
    color: var(--bg);
}
#bars {
    font-family: Pixelify Sans, sans-serif;
    font-size: 20px;
    position: -webkit-sticky;
    position: sticky;
    width: 100%;
    top: 0;
    background-color: var(--bg);
}
#bar-1 {
    height: 36px;
    background-color: var(--border);
    color: var(--bg);
    line-height: 36px;
    padding-left: 10px;
}
#bar-2 {
    height: 4px;
    background-color: var(--border);
    margin-top: 1px;
}
#bar-3 {
    height: 3px;
    background-color: var(--border);
    margin-top: 2px;
}
#bar-4 {
    height: 2px;
    background-color: var(--border);
    margin-top: 3px;
}
#bar-5 {
    height: 1px;
    background-color: var(--border);
    margin-top: 4px;
}
#terminal {
    margin-left: 20px;
}
#input-line {
    margin-left: 20px;
    overflow-x: hidden;
    width: 100%;
}
.command {
    text-shadow: 0 0 7px #fff, 0 0 151px var(--border);
    color: #fd9bdb;
}
.output {
    font-weight: 400 !important;
}
.keys {
    color: #ff9951;
    font-weight: 400;
}
@media (max-width: 600px) {
    body {
        font-size: 10px;
        padding: 2px;
        font-weight: 300;
    }
    input {
        font-size: 10px;
    }
    p {
        line-height: 14px;
    }
    pre {
        line-height: 12px !important;
        font-size: 9px;
    }
    main {
        border-width: 1px;
    }
    div {
        line-height: 14px;
    }
    #terminal,
    #input-line {
        margin-left: 8px;
    }
}