html,
body {
    background: rgba(10, 10, 10, 0.9);
    overflow: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
}

.ctr {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
}

.bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 213px;
    height: 135px;
    background: rgba(10, 10, 10, 0.9);
    color: white;
    z-index: 999999999;
    border: 1px solid #050505;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAlSURBVChTYxAREfnPw8PzHxeNogCGkfnEmQDDyDph/IF3A89/ABQxTIGh/maWAAAAAElFTkSuQmCC') repeat;
    font-family: 'Verdana', sans-serif !important;
    font-size: 13px !important;
    color: #cccccc;
}

.border-light {
    content: '';
    width: 211px;
    height: 133px;
    border: 1px solid #3c3c3c;
}

.border-dark {
    content: '';
    height: 127px;
    border: 3px solid #282828;
}

.border-inside {
    content: '';
    height: 125px;
    border: 1px solid #3c3c3c;
}

.logout-messages {
    pointer-events: none;
    color: red;
    margin: 40px;
    position: fixed;
    top: 0;
    left: 0;
    text-shadow: 2px 2px #FFF, 4px 4px 10px #000;
    z-index: 9999999999;
}

@keyframes blurslowly {
    0% { filter: none; }
    92% { filter: blur(0); }
    96% { filter: blur(1px); }
    100% { filter: blur(0); }
}

body {
    animation-name: blurslowly;
    animation-iteration-count: infinite;
    animation-duration: 15s;
    animation-play-state: running;
}

.rainbow-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 3px;
}

.rainbow-1,
.rainbow-2 {
    height: 1px;
    width: 100%;
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.rainbow-1 {
    background-image: linear-gradient(
        to right,
        #38b0da,
        #cb46cd,
        #cce335,
        #cb46cd,
        #38b0da
    );
}

.rainbow-2 {
    background-image: linear-gradient(
        to right,
        #1d5e74,
        #6c256d,
        #6d791c,
        #6c256d,
        #1d5e74
    );
    animation-delay: 1s;
}

.rainbow-3 {
    height: 1px;
    width: 100%;
    background: #090909;
}

@keyframes shimmer {
    0% {
        background-position: -100% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.bg .items *,
.item,
.body {
    font-family: 'Verdana' !important;
    letter-spacing: normal !important;
    font-size: 13px !important;
    color: #cccccc;
    font-weight: 500;
    text-shadow: 1px 1px 0px #050505;
}

.body {
    padding: 8px;
}

.ctrd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.items {
    display: flex;
    flex-direction: column;
}

.links {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
}

.title {
    font-weight: bold !important;
    text-align: center;
}

.button {
    border: 1px solid #323232;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 165px;
    height: 22px;
    padding-bottom: 3px;
    margin-bottom: 8px;
    background: linear-gradient(0deg, #191919, #232323);
    outline: none;
    font-weight: 700;
    text-decoration: none;
    color: #cccccc;
}

.button:hover {
    background: linear-gradient(0deg, #232323, #343434);
}

.button:active {
    background: linear-gradient(0deg, #232323, #191919);
}

#entrance-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: pointer;
    transition: opacity 0.5s ease-out;
}

#entrance-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.entrance-text {
    color: white;
    font-family: Verdana, sans-serif;
    font-size: 18px;
}
