:root {
    --background: #fafafa;
}


body {
    font-family: "Open Sans", sans-serif;
    background-color: var(--background);
}

a {
    font-size: 17px;
    color: black;
}

.main-container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#scrollpath{
    position: fixed;
    top:0;
    left: 0;
    width: 100vw;
    height: 10px;
    background-color: rgba(255,255,255,0.05);
}
#preogressbar{
    position: fixed;
    top: 0;
    left: 0;
    height: 10px;
    width: 0%;
    background-image: linear-gradient(to top, #008aff,#00ffe7);
    animation: scroll 5s linear infinite;
}
#preogressbar:before,
#preogressbar:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, #008aff,#00ffe7);
    filter: blur(10px);
}
#preogressbar:after{
    filter: blur(30px);
}
@keyframes scroll {
    0%,100%{filter: hue-rotate(0deg)}
    50%{filter: hue-rotate(360deg)}

}