.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: gold;
  border-radius: 50%;
  pointer-events: none;
  animation: fadeout 0.5s forwards;
}
@keyframes fadeout {
  100% { opacity: 0; transform: scale(2); }
}
