JSFiddle - React, Tailwind, and code Playground
HTML
<div class="rect">Hover me</div>
CSS
.rect{
background-color:LightSeaGreen ;
width:100px;
height:100px;
transition: background-color 1s ease-in .8s,
width .5s,
height .8s;
text-align:center;
display:flex;
align-items: center;
justify-content: center;
}
.rect:hover{
background-color:Tomato ;
width: 150px;
height: 150px;
}