* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95));
}



.clock {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 5px 5px 25px rgba(0, 0, 0, 0.25);
    scale: 2;
    border-radius: 50%;
}

.clock::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #2f363e;
    z-index: 10000;
    border: 1px solid #fff;
    border-radius: 50%;
}

#time {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#time .circle {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

#time .circle svg {
    position: relative;
    transform: rotate(270deg);
}

#time .circle:nth-child(1) svg {
    width: 250px;
    height: 250px;    
}

#time .circle:nth-child(2) svg {
    width: 210px;
    height: 210px;    
}

#time .circle:nth-child(3) svg {
    width: 170px;
    height: 170px;    
}

#time .circle svg circle {
    width: 100%;
    height: 100%;    
    fill: transparent;
    stroke-width: 5;
    stroke: var(--clr);
    transform: translate(5px,5px);
    opacity: 0.25;
}

#time .circle:nth-child(1) svg circle {
    stroke-dashoffset: 760;
    stroke-dasharray: 760;
}

#time .circle:nth-child(2) svg circle {
    stroke-dashoffset: 630;
    stroke-dasharray: 630;
}

#time .circle:nth-child(3) svg circle {
    stroke-dashoffset: 510;
    stroke-dasharray: 510;
}

.dots {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 10;
}

.dots::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--clr);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--clr),
    0 0 40px var(--clr),
    0 0 60px var(--clr),
    0 0 80px var(--clr);
}

.niddles {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.niddles i {
    position: absolute;
    width: 2px;
    background: var(--clr2);
    height: 50%;
    opacity: 0.75;
    border-radius: 6px;
    transform-origin: bottom;
    transform: scaleY(0.5);
}

.niddle2 {
    width: 170px;
    height: 170px;
    z-index: 9;
}

.niddle2 i {
    width: 4px;
}

.niddle3 {
    width: 140px;
    height: 140px;
    z-index: 8;
}

.niddle3 i {
    width: 4px;
}

#time span {
    position: absolute;
    text-align: center;
    color: #999;
    font-family: consolas;
    transform: rotate(calc(30deg * var(--i)));
    inset: 20px;
}

#time span b {
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    transform: rotate(calc(-30deg * var(--i)));
}