@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

* {
    font-family: "Roboto Mono", monospace;
    margin-bottom: 0 !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    color: inherit !important;
}

.progress {
    height: 2px;
    width: 145.6px;
    background: linear-gradient(#474bff 0 0),
        linear-gradient(#474bff 0 0),
        #dbdcef;
    background-size: 60% 100%;
    background-repeat: no-repeat;
    animation: progress-7x9cg2 3s infinite;
 }
 
 @keyframes progress-7x9cg2 {
    0% {
       background-position: -150% 0,-150% 0;
    }
 
    66% {
       background-position: 250% 0,-150% 0;
    }
 
    100% {
       background-position: 250% 0, 250% 0;
    }
 }