

.box2
{
    position: relative;
    margin: 40px;
	top: 40%;
left: 40%;


}
.box2 .text
{
    position: absolute;
    top: 5%;
    left: 0;
    transform: translate(-50%,-50%);
    text-align: center;
    color: blue;
	text-transform: uppercase;
	font-weight:bold;
	font-size: 30px;
	
}
.box2 .text h2
{
    font-size: 39px;
    font-weight:bold;
    letter-spacing: 1px;
	text-transform: uppercase;
	color: blue;
}

.circle
{
    width: 200px;
    height: 200px;
    display: center;
    justify-content: center;
    align-items: center;
	 animation: rotateCircle 10s infinite linear;
}
.circle .points
{
    width: 3px;
    height: 15px;
    background: red;
    position: absolute;
    border-radius: 3px;
    transform: rotate(calc(var(--i)*var(--rot))) translateY(-100px);
	
    
}
.points.marked
{
    animation: glow 0.04s linear forwards;
    animation-delay: calc(var(--i)*0.02s);
	
}
@keyframes glow
{
    0%
    {
        background: #0007;
        box-shadow: none;
    }
    100%
    {
        background: var(--bgColor);
        box-shadow: 0 0 10px var(--bgColor);
    }
}

