body {
    background-color: #1A1A1A;
    color: #E5E5E5;
    margin: 0;
    height: 100%;
}

.unselectable{
    user-select: none; 
    -webkit-user-select: none;   
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
}

#video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-position: center center;
    object-fit: cover;
    /*filter: brightness(0.5);*/
}

::-webkit-scrollbar {
    background-color: #202324;
    color: #aba499;
}

::-webkit-scrollbar-corner {
    background-color: #181a1b;
}

::-webkit-scrollbar-thumb {
    background-color: #454a4d;
}

.green-button {
    background-color: rgb(0, 191, 102);
    color: #E5E5E5;
    cursor: pointer;
    -webkit-transition: background 100ms ease-in-out 100ms;
    -moz-transition: background 100ms ease-in-out 100ms;
    -o-transition: background 100ms ease-in-out 100ms;
    transition: background 100ms ease-in-out 100ms;
}

.green-button:hover {
    background-color: rgba(0, 191, 102, 0.5);
    -webkit-transition: background 100ms ease-in-out 100ms;
    -moz-transition: background 100ms ease-in-out 100ms;
    -o-transition: background 100ms ease-in-out 100ms;
    transition: background 100ms ease-in-out 100ms;
}

.tippy-box {
    font-size: 17px;
}

img.emoji {
    width: 1.25em;
    pointer-events: none;
    margin: 0 .05em 0 .1em;
    vertical-align: -0.1em;
    display: initial;
}