html,
body {
    background-color: #000;
}

body {
    margin: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    font-family: 'Poppins', Arial;
    color: #fff;
    font-size: 18px;
}

@keyframes in {
    0% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}

embed {
    width: 100%;
    height: 100%;
    z-index: -1;
    border: none;
}

.card {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 15px;
    border-radius: 18px;
    animation: bb 4s linear infinite;
    background-color: #0a0a0a;
    text-align: center;
    max-width: 93%;
    max-width: 360px;
    max-height: 83%;
    overflow: auto;
    z-index: 2;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.30);
}

.med {
    font-family: 'PoppinsMed', Arial;
}

.bold {
    font-family: 'PoppinsBold', Arial;
}

p {
    margin: 0px;
    padding: 0px;
}

@keyframes aa {
    0% {
        color: #7777ff;
    }

    25% {
        color: #7735ff;
    }

    50% {
        color: #5555ff;
    }

    75% {
        color: #7735ff;
    }

    100% {
        color: #7777ff;
    }
}

@keyframes bb {
    0% {
        border: 2px solid #7777ff;
    }

    25% {
        border: 2px solid #7735ff;
    }

    50% {
        border: 2px solid #5555ff;
    }

    75% {
        border: 2px solid #7735ff;
    }

    100% {
        border: 2px solid #7777ff;
    }
}

@keyframes cc {
    0% {
        background: #5555aa;
    }

    25% {
        background: #7735ff;
    }

    50% {
        background: #5555ff;
    }

    75% {
        background: #7735ff;
    }

    100% {
        background: #7777ff;
    }
}


a {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    animation: aa 4s linear infinite;
}

a:hover {
    opacity: 85%;
}

a:active {
    opacity: 70%;
}

a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background-color: currentColor;
    transition: width 0.1s ease-out, left 0.1s ease-out;
    transform: translateX(-0%);
}

a:hover::before {
    width: 100%;
    left: 0;
}

a:active::before {
    opacity: 40%;
    user-select: none;
}

.hidden {
    display: none;
}

::-webkit-scrollbar-track {
    background: #3a3a3a;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #4a4a4a;
    animation: cc 4s linear infinite;
    border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a5a5a;
}

::-webkit-scrollbar-thumb:active {
    background: #6a6a6a;
}

#close {
    position: fixed;
    right: 8px;
    bottom: 8px;
    padding: 12px;
    border-radius: 14px;
    background-color: #2a2a2a;
    font-family: 'Poppins', Arial;
    color: #fff;
    font-size: 18px;
    z-index: 10000;
    border: none;
    animation: closebtn 1.2s;
    cursor: pointer;
    border: 2px solid #cc2a2a;
}

#close:hover {
    background-color: #3a3a3a;
}

#close:active {
    background-color: #4a4a4a;
}

@keyframes closebtn {
    0% {
        padding: 12px;
        background-color: #2a2a2a;
    }

    45% {
        padding: 84px;
        background-color: #cc2a2a;
    }

    0% {
        padding: 12px;
        background-color: #2a2a2a;
    }

}

#view {
    position: absolute;
    z-index: 3 !important;
    background-color: #0a0a0a;
}

#contdiv {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 9999;
    background-color: #0a0a0a;
    display: none;
}

#all {
    position: fixed;
    z-index: 1;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    opacity: 100%;
    animation: in 1s;
}

a.li {
    display: block;
    padding: 5px;
    background-color: #2a2a2a;
    color: #fff !important;
    text-decoration: none;
    border-radius: 9px;
    text-align: center;
    margin: 3px 0px;
}

a.li {
    text-decoration: none !important;
}

a.li::before {
    content: none;
}