<div class="box gradient-green"></div>
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
flex-direction: column;
gap: 1rem;
}
const tl = gsap.timeline()
tl.to(".box", {x: 100});
tl.from(".box", {x: 100});