* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b3c5df;
}

.outer {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.2), -6px -6px 10px -1px rgba(211, 211, 211, 0.7);
    position: relative;
}

.inner {
    position: absolute;
    width: 240px;
    height: 240px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
     inset -4px -4px 6px -1px rgba(211, 211, 211, 0.7),
      -0.5px -0.5px 0px rgba(211, 211, 211, 1),
       0.5px 0.5px 0px rgba(0, 0, 0, 0.2);
}

#progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;

}


svg {
    position: absolute;
}

circle {
    fill: none;
    stroke: url(#GradientColor);
    stroke-width: 30;
    stroke-dasharray: 840;
    stroke-dashoffset: 840;
    animation: anim 2s linear forwards;
}


@keyframes anim {
    100% {
        stroke-dashoffset: 294;
    }
}