body {
    background-color: black;
    color: white;
    font-family: 'Anonymous Pro', monospace;
    margin: 0px;
    padding: 0px;
    font-size: 80%;
    overflow-x: hidden;

}

#menubar {
    margin: 0px;
    padding: 5.5px;
    width: 100%;
    background: #222222;
    color: #eeeeee;
    border-bottom: 1px solid white;
}


#console {
    padding: 10px;
}

#version {
    color: red;
    animation: anim_version 2s infinite;
}

.windowButton {
    border: 0px;
    background-color: darkred;
    width: 50px;
    height: 25px;
    position: absolute;
    text-align: center;
    font-size: 17px;
    top: 0;
    right: 0;
    user-select: none;
    transition: .25s;
}

.windowButton:hover {
    background-color: #cc0000;
}


#input {
    font-family: 'Anonymous Pro', monospace;
    min-width: 1em;
    border: 0px;
    background: black;
    color: transparent;
    text-shadow: 0 0 0 white;
    border-bottom: 2px solid white;
    padding: 0px;
    margin: 0px;
}

.input:active {
    border-bottom: 2px solid red;
}


a {
    color: #ccccff;
    text-decoration: underline;
    transition: .5s;
    text-decoration-color: transparent;

}

:hover {
    color: white;
    transition: .5s;
    text-decoration-color: white;
}

#externalData {
    visibility: hidden;
}

@keyframes anim_version {
    0% {
        color: steelblue;
        text-shadow: 0 0 0px;
    }
    50% {
        color: lightskyblue;
        text-shadow: 0 0 10px #fff;

    }
    100% {
        color: steelblue;
        text-shadow: 0 0 0px;


    }

}

/*custom string styling*/
.bot {
    color: gray;
}

.news {
    color: red;
}


