body {
    height: 100vh;
    margin: 0;
    display: grid;
    place-items: center;
    background: #232323;
    color: white;
}

.circle {
    width: 180px;
    height: 180px;
    background:
            conic-gradient(from 0deg at 50% 50%,
            #6f7bf7 0%,
            #9bf8f4 50%,
            #101012 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    box-shadow:
            4px 4px 16px #000000bf,
            -4px -4px 16px #ffffff1a;
    animation: spin 1s infinite linear;
    position: relative;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.count {
    content: " ";
    width: 174px;
    height: 174px;
    background: #1d1e22;
    position: absolute;
    top: 3px;
    left: 3px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    box-shadow:
            4px 4px 16px #000000bf inset,
            -4px -4px 16px #ffffff1a inset;
    animation: spin 1s infinite linear reverse;
}

.percent {
    font-family: sans-serif;
    font-size: 4em;
}