body{
    margin: 0;
    padding: 15px 20px;
    min-height: 99%;
    width: 100%;
    min-width: 550px;
    color: #51ff00;
    background: #0f0e0d;
    font-family: cursor, monospace;
    overflow-x: hidden;
    mix-blend-mode: difference;
}

body.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

#webtitle{
    text-align: left;
    white-space: pre-wrap;
}

::selection{
    color: #0f0e0d;
    background-color: #51ff00;
}

::-moz-selection{
    color: #0f0e0d;
    background-color: #51ff00;
}

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

b{
    font-weight: bold;
    text-decoration: underline;
}

.cursor{
    font-size: 12px;
    color: #00f7ff;
    background-color: #00f7ff;
    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 2s ease-in-out infinite;
}

@keyframes blinker{
    50%{
        opacity: 0;
    }
}

#command{
    cursor: text;
    height: 50px;
    color: #00f7ff;
}

#liner{
    line-height: 1.3em;
    margin-top: -2px;
    animation: show 0.5s ease forwards;
    animation-delay: 1.2s;
    opacity: 1;
}

#liner::before{
    color: #51ff00;
    content: "X:\\Users\\Guest>  ";
}

#liner.password::before{
    content: "Password:";
}

  @keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

p{
    display: block;
    line-height: 1.3em;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    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: #ffffff;
}

.color2{
    color: #00f7ff;
}

.command{
    color: #51ff00;
    text-shadow: 0 0 5px #00f7ff; 
}

.error{
    color: #fdfdfd;
}

.white{
    color: #fff;
}

.inherit,

a{
    color: #00f7ff;
    text-decoration: inherit;
}

a:hover{
    background: #00f7ff;
    color: #211830;
    cursor: pointer;
}

a:focus{
    outline: 0;
}

#loading-container {
    width: 300px;
    text-align: center;
    border: 4px solid #00ff00;
    padding: 10px;
    background-color: #000;
}

#loading-bar {
    width: 0;
    height: 20px;
    background-color: #00ff00;
    margin-bottom: 10px;
    box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
}

#loading-text {
    font-size: 14px;
    text-shadow: 0 0 5px #00ff00;
}

#main-content {
    text-align: left;
    margin-top: 0px;
}

video {
    border-width: 5px;
    border-style: solid;
    border-color: #00ff00;
    aspect-ratio: 16/9;
    width: 800px;
}

.light {
    background: #dfdfdf;
}

@media (max-width: 768px) {
    #body{
        background: #ffffff;
        font-size: 10px;
    }
    body.loading {
        justify-content: center;
        height: 100vh;
        flex-direction: column;
    }
    #main-content {
        color: #ffffff;
    }
    #loading-container {
        left: 550px;
    }
    #loading-bar {
        left: 550px;
    }
    #loading-text {
        left: 550px;
    }
}