.falling-img {
position: absolute;
z-index: 9999;
top: 15px;
left: 15px;
transition: transform 0.2s ease-out;
}
.burst {
animation: burstAnim 0.5s forwards;
}
@keyframes burstAnim {
0% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(2);
opacity: 0;
}
}