@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: #000000;
    --border: #0d200a;
    --text: #FFFFFF;
    --prompt-default: #FFFFFF;
    --prompt-1: #FFFFFF;
    --prompt-2: #70FDFF
}

.book-title {
    color: green
}

@keyframes typing {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

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 .5s steps(30, end);
    white-space: nowrap;
    overflow: hidden
}

div {
    line-height: 22px
}

@font-face {
    font-family: ascii;
    src: url(../fonts/IBMPlexMono-Thin-23n5SbSi.ttf)
}

pre {
    margin: 0;
    padding: 0;
    line-height: 20px !important;
    color: #FF0000;
    font-family: ascii, monospace
}

input {
    font-family: IBM Plex Mono, monospace;
    padding: 0;
    margin: 0;
    border: none;
    resize: none;
    outline: none;
    font-size: 16px;
    color: #FFFFFF;
    caret-color: var(--prompt-default);
    width: 50%
}

a {
    color: #FFFFFF
}

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
    }
}
