JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="moving">
</div>
</div>
CSS
.moving {
position: absolute;
width: 200px;
height: 150px;
top: 50px;
left: 50px;
background-color: green;
transition: all 2s cubic-bezier(0.310, 0.440, 0.445, 1.650);
}
.container:hover .moving {
transform: scale(1.5);;
}