:root {
    --base-color: #DBDBDB;
    --background-color: #0e1111;
    --border: dashed 1px rgba(219, 219, 219, 0.9);
    --link-color: var(--base-color);
    --text-color: var(--base-color);
}

a {
    color: #63de00;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-color);
}

#bar {
    text-align: center;
    width: 750px;
    height: 25px;
    position: absolute;
    top: 25px;
    margin: 0 auto;
    font-family: monospace;
    padding: auto;
    float: none;
    border-radius: 5px;
}

#red {
    background-color: #E94B35;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    margin: 0 auto;
    left: -47%;
    bottom: -20%;
    position: relative;
}

#yellow {
    background-color: #f0f000;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    margin: 0 auto;
    left: -44%;
    bottom: 40%;
    position: relative;
    display: block;
}

#green {
    background-color: #1AAF5C;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    margin: 0 auto;
    left: -41%;
    bottom: 99%;
    position: relative;
    display: block;
}

.console {
    font-family: 'Fira Mono';
    width: 96vw;
    height: 92vh;
    box-sizing: border-box;
    margin: auto;
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.console header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #555;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #DDD;
}

.console .console-body {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-sizing: border-box;
    padding: 20px;
    height: calc(100% - 40px);
    overflow: hidden;
    background-color: #000;
    color: #63de00;
}

.about p {
    font-family: 'Fira Mono';
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
}

@media only screen and (max-width: 600px) {
    .about p {
        font-family: 'Fira Mono';
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        border-right: 3px solid;
    }
    #bar {
        text-align: center;
        width: 750px;
        height: 25px;
        position: absolute;
        top: 20px;
        margin: 0 auto;
        font-family: monospace;
        padding: auto;
        float: none;
        border-radius: 5px;
    }
}

.about p:nth-child(1) {
    width: 250px;
    animation: typing 2s steps(250, end);
    -webkit-animation: typing 2s steps(250, end);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.about p:nth-child(2) {
    opacity: 0;
    width: 500px;
    animation: typing2 3s steps(500, end);
    -webkit-animation: typing2 3s steps(500, end);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.about p:nth-child(3) {
    opacity: 0;
    width: 600px;
    animation: typing3 3s steps(600, end);
    -webkit-animation: typing3 3s steps(600, end);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

.about p:nth-child(4) {
    opacity: 0;
    width: 600px;
    animation: typing4 3s steps(600, end);
    -webkit-animation: typing4 3s steps(600, end);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
}
.about p:nth-child(5) {
    opacity: 0;
    width: 400px;
    animation: typing5 3s steps(400, end);
    -webkit-animation: typing5 3s steps(400, end);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: 11s;
    animation-delay: 11s;
}
@keyframes typing {
    0% {
        width: 0;
    }
    100% {
        border: none;
    }
}

@keyframes typing2 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        border: none;
    }
}

@keyframes typing3 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        border: none;
    }
}

@keyframes typing4 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        border: none;
    }
}
@keyframes typing5 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        border: none;
    }
}