html {
    scroll-behavior: smooth;
}

.example {
    animation: anim 2s ease-in;
}

@keyframes anim {
    0% {
        margin-top: 300px;
    }

    100% {
        margin-top: 10px;
    }
}