/* The global container for all particles */
.global-magic-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;  /* Let clicks pass through */
    z-index: 99999;        /* Ensure it appears above everything else */
  }
  
  .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    /*background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 70%);*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    image-rendering: pixelated;
    opacity: 0;
    animation-name: floatUp;
    animation-timing-function: linear;
    animation-iteration-count: 1;
  }
  
  @keyframes floatUp {
    0% {
      transform: translateY(0) scale(0);
      opacity: 0;
    }
    10% {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateY(calc(-1 * var(--210px))) scale(1.5);
      opacity: 0;
    }
  }

.my-target-div, #spawn-particles-btn{
  position:absolute;
  bottom: 20%;
  right:0;
  width:10%;
  height:10%;
  background:red;
  font-size:10px;
}
#spawn-particles-btn{
  z-index:10000;
}