*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
}

body{
    background: #e3edf7;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill{
    height: 160px;
    width: 160px;
    position: relative;
}
.outer{
    height: 160px;
    width: 160px;
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, .15),-6px -6px 10px -1px rgba(255, 255, 255, .7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, .2), inset -4px -4px 6px -1px rgba(255, 255, 255, .7), -0.5px -0.5px 0px rgba(255, 255, 255, 1), 0.5px 0.5px 0px rgba(0, 0, 0, .15), -7px -1px 10px -10px rgba(0, 0, 0, .5);
}

#number{
    font-weight: 600;
    color:#555
}

circle{
    fill: none;
    stroke:url(#GradientColor);
    stroke-width: 20px;
    stroke-dasharray: 472;
    stroke-dashoffset: 472;
    animation: anim 2s linear forwards;

}

svg{
    position: absolute;
}


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