
body{
    color:white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: black;
}
#time {
    display: flex;
    gap: 40px;
}
#time .circle{
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#time div span {
    position:absolute;
    transform:translateX(-50%) translateY(-5px);
    font-size:0.35em;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
#time div{
    position: absolute;
    text-align: center;
    font-weight: 500;
    font-size: 1.5em;

}
#time .circle svg{
    position: relative;
    width: 150px;
    height: 150px;
    transform: rotate(270deg);
}
#time .circle svg circle {
    width: 100%;
    height:100%;
    fill: transparent;
    stroke: #191919;
    stroke-width: 4;
    transform: translate(5px,5px);
}
#time .circle svg circle:nth-child(2)
{
    stroke: var(--clr);
    stroke-dasharray: 440;
}
#time .ap{
    position: relative;
    font: 1em;
    transform: translateX(-20px);

}
.dots{
    position: absolute;
    width:100%;
    height:100%;
    z-index: 10;
    display: flex;
    justify-content: center;
}
.dots::before
{
content: '';
position: absolute;
width: 15px;
height: 15px;
background-color: var(--clr);
border-radius: 50%;
box-shadow: 0 0 20px var(--clr),
0 0 60px var(--clr);

}