<span class="first"/>
  <span/>
  <span/>
  <span/>
  <span/>
  <span/>
html,body{background:#000;overflow:hidden}
.first{ margin:155px auto }
span
{width:10px;
height:10px;
background: steelblue;
  border-radius:50%;
display:block;
  margin-left:30px;
  box-shadow:30px 30px 20px 2px steelblue;
   -webkit-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
 
 
}

@keyframes rotate {
  from {
    transform: rotateZ(360deg);
  }
  to {
    transform: rotateZ(0deg);
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotateZ(360deg);
  }
  to {
    -webkit-transform: rotateZ(0deg)
  }
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.