body {
    background-color: #313731;
    color: #d1d1d1;
    font-family: monospace;
}

.hidden {
    display: none !important;
}

#siteHeader {
    margin: auto;
    padding: 0;
    background: rgba(0,10,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    height: 35px;
    line-height: 35px;
    overflow: auto;
    width: 100%;
    text-align: center;
}

#siteTitle {
    float: left;
    margin-left: 20px;
    font-size: larger;
}

#indextitle {
    display: block;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
    margin-top: 45px;
}

#loading {
    width: 10%;
    min-width: 100px;
    margin: auto;
    display: block;
}

/* #616161C1 == rgba(97, 97, 97, 0.76)
/* firefox */
:root {
    scrollbar-color: rgba(97, 97, 97, 0.76) transparent !important;
    scrollbar-width: thin !important;
}

/* Track */
::-webkit-scrollbar-track {
     background: rgba(0,0,0,0.2);
}

/* Handle */
::-webkit-scrollbar-thumb {
    width: 5px;
    border-radius: 5px;
    background: rgba(97, 97, 97, 0.76);
    opacity: 0.5;
}

/* corner */
::-webkit-scrollbar-corner {
    background: rgba(97, 97, 97, 0.76);
    border: none;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
     background: rgba(129, 129, 129, 0.76); /* #818181C1 */
}


@media (orientation: landscape), (min-width: 767px) {
    /* width*/
    ::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
}

@media all and (orientation: portrait) and (max-width: 767px) {
    ::-webkit-scrollbar {
        width: 3px;
        height: 3px;
    }

    body {
        font-size: smaller;
    }
}