::selection {
    background: darkblue;
}

html,
body {
    height: 100%;
    margin: 0;
    width: 100%;
    background-color: #000;
    color: #71c90d;
    font-family: Inconsolata, monospace;
    font-size: 24px;
    background: linear-gradient(#181818 50%, #111 50%);
    background-size: 100% 5px;
    background-repeat: repeat-y;
    overflow: auto;
    scrollbar-color: #00ff00 #1e1e1e;
    scrollbar-width: thin;  
}

#terminal {
    /* max-width: fit-content; */
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.4);
    width: 80%;
    font: inherit;
    border: none;
    background-color: transparent;
    outline: none;
    color: inherit;
}

A, code, .highlight {
    color: lightblue;
}

#cursor {
    color: #00ff00;
    box-sizing: border-box;
    border-left: .5em solid;
}

/* .logo {
    width: 53%;
} */

#inputcmd {
    background-color: #111;
    border: 1px;
    font-size: 1em;
    /*hide default cursor*/
    color: transparent;
    text-shadow: 0 0 0 #00ff00;
}

#inputcmd:focus {
    outline: none;
}


@keyframes blinking {
    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: green;
    }
}

@keyframes scanline {
    0.01% {
        height: 0;
    }

    99.99% {
        height: 100%
    }

    100% {
        height: 0;
    }
}

.loading {
    font-size: 100px;
}

.scanline {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    animation: scanline 8s linear infinite;
    pointer-events: none;
}


.connecting-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    position: relative;
    margin: 0 auto;
}

canvas {
    position: absolute;
    z-index: 1
}