body {
    background-color: black;
    text-decoration: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
nav {
    position: absolute;
    margin: 0;
    width: 100%;
    right: 0;
    animation: 6s ease-in 1s 4 reverse both paused slidein;
    animation: slidein 6s linear 3s;
    animation: slidein 6s;
}
.barva:hover {
    color:red;
    text-decoration: none;
}
a {
    padding: 15px 20px;
    color: #b81717;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    font-size: 18px;
    overflow: hidden;
    transition: 0.5s;
}
a:hover {
    color: #b30c0c;
    background: #2195f344;
    box-shadow: 0 0 10px #d41212a1, 0 0 40px #d10404b7, 0 0 80px #f10404e0;
    border-radius: 50%;
}
a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent,#2195f380);
}
.box-img {
    border-image: 70%;
    border-radius: 50%;
    height: 150px;
}





.dark-mode {
    background-color: rgb(3, 197, 245);
    color: rgb(5, 5, 5);
}


::-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);
    }
}

#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);
}
