body {
    background-color: #000000;
    background-position: center;
    overflow: hidden;
    font-family: "Brandon Light";
    color: #ffffff;
    user-select: none;
    opacity: 0;
    transition: opacity 2s;
    -webkit-transition: opacity 5s;
    /* Safari */
}

a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 0;
}

.center {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#border {
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    pointer-events: none;
    z-index: -1;
}

#borderTop,
#borderBottom {
    position: absolute;
    width: 0%;
    height: 4px;
    background-color: rgb(0, 0, 0);
}

#borderRight,
#borderLeft {
    position: absolute;
    width: 3px;
    height: 0%;
    background-color: rgb(0, 0, 0);
}

video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
    filter: blur(5px) brightness(30%);
    pointer-events: none;
}

#test p {
    opacity: 0;
}

#widget {
    position: absolute;
    width: 394px;
    height: 29px;
    margin: 3px;
    background-color: black;
    z-index: 1;
    transition: 2s;
}

#widgetMain {
    position: absolute;
    display: inline-flex;
    justify-content: space-between;
    margin-top: 3px;
    padding-right: 10px;
    padding-left: 10px;
    width: 374px;
    height: 29px;
    z-index: 2;
    background-color: rgb(0, 0, 0);
}

#burgerMenu {
    cursor: pointer;
}

#dropDownContent {
    display: none;
    opacity: 0;
    transition: 2s;
    width: 100%;
    height: 100%;
    position: absolute;
    margin-top: 30px;
}

#links {
    right: 5px;
    width: 100px;
    float: left;
    margin-top: -4px;
}

#groups {
    float: right;
    margin-top: 5px;
}

#dropDownContent div a {
    opacity: 0;
    transition: 1s;
    line-height: 18px;
}

#dropDownContent div span {
    margin-left: 10px;
    margin-right: 10px;
}

#groups a,
#groups span {
    float: right;
}

.hitCount {
    position: fixed;
    bottom: 5px;
    right: 5px;
    transition: 3s;
    color: var(--color);
    font-size: 24px;
    opacity: 0;
    bottom: -3px;
}

a.hitCounter.badge-done0 {
    display: none !important;
}

#background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}