body {
    background-color: black;
    text-decoration: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

a {
    background: rgb(32,33,31);
    animation: animate 5s linear infinite;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #001aff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    font-size: 18px;
    overflow: hidden;
    transform: 0.5s;
    width: 170px; height: 25px;
    background-size: 100% 200%;
    background-image: linear-gradient(to bottom, rgba(32, 31, 31, 0.438) 50%, rgb(27, 26, 26) 50%);
    border-radius: 5%;
    transition: background-position 0.1s;
}
a:hover {
    color: #2020209f;
    background: #474747;
    box-shadow: 0 0 10px #22272c65, 0 0 40px #2020209f, 0 0 80px #202020d0;
    border-radius: 10%;
    background-position: 0 -100%;
    outline: 2px dashed;
    transform: scaleY(1.2) scaleX(1.1);
    animation: animate 5s linear infinite;
}
.tiktoklogo {
    width: 50px;
}

.textab {
    text-align: center;
    
    animation: animate 5s linear infinite;
}

::-webkit-scrollbar {
    width: 0;
}

#scrollPath {
    position: fixed;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
}

#processbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(to top, #008aff,#00ffe7);
    animation: animate 5s linear infinite;
}

@keyframes animate {
    0%,100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(360deg);
    }
}

.colorchanger {
    animation: animate 5s linear infinite;
}
.colorchanger:hover {
    animation: animate 5s linear infinite;
}

#progressbar:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #008aff,#00ffe7);
    filter: blur(10px);
}
#processbar:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #008aff,#00ffe7);
    filter: blur(30px);
}

.footer {
    background-color: rgba(15, 15, 15, 0.568);
    background-position: center;
    border-radius: 5%;
    position:fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}