.explosion {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 9999;
}
.particles-circle {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #0d8f00;
  left: 0;
  top: 0;

  transform: translate(-50%, -50%) scale(0);
}
.particles-circle:nth-of-type(odd){
  border: solid 2px #ff0083;
  background-color: white;
}
