@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
    font-family: 'VT323', monospace, Monaco;
    overflow-wrap: break-word;
}
p {
    text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}
#root, #__next {
    isolation: isolate;
}
html {
    height: 100%;
}
body {
    height: auto;
    background: #000;
    color: #fff;
}
a {
    color: #94ca59;
}
p, ul li, ol li, a {
    font-size: 0.93vw;
}
/* CSS */
.contain {
    max-width: 600px;
    padding: 40px 20px 0 20px;
    margin: 0 auto;
}
.mob {
    display: none;
}
.terminal {
    color: white;
    padding: 20px;
}
.done {
    display: block !important;
}
#terminal_text p {
    display: none;
}
.line {
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);
    animation: typing 1.25s steps(30, end);
    display: block !important;
}
.bcursor {
    position: relative;
    display: inline-block;
    font-size: 1vw;
    color: white;
}
.bcursor::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    display: inline-block;
    background-color: #94ca59;
    vertical-align: top;
    width: 10px;
    height: 100%;
    max-height: 24px;
    -webkit-animation: blink 1s step-end infinite;
    animation: blink 1s step-end infinite;
}
@-webkit-keyframes blink {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}
@keyframes blink {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@media (max-width:640px) {
    p, ul li, ol li, a {
        font-size: 3vw;
    }
    pre {
        text-align: center;
        font-size: 2.5vw;
    }
    .mob {
        display: block;
    }
    .desk {
        display: none;
    }
}