@keyframes falling {
    from {
        transform: translateY(-50px);
        opacity: 1;
    }
    to {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.falling-object {
    max-width: 32px;
    max-height: 32px;
    width: auto;
    height: auto;
    animation: falling 5s linear forwards;
}