/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 03 2026 | 20:32:03 */
.particle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #FAFAFA;
    border-radius: 30%;
    pointer-events: none;
    animation: fadeOut 0.6s linear forwards;
  }

  @keyframes fadeOut {
    to {
      transform: translate(var(--x), var(--y)) scale(0);
      opacity: 0;
    }
  }