@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}

.animate__bounce, .animate__pulse {
    animation: appear 5s linear;
    animation-timeline: view();
    animation-range: 0% cover 40%;
}