html{
    scroll-behavior: smooth;
}
#progress{
    position: fixed;
    bottom: 20px;
    height: 60px;
    width: 60px;
    right: 20px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    cursor: pointer;
    background-color: #415cab;
    z-index: 99;
}
#progress-value{
    display: block;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    color: #001a2e;
}