JSFiddle - React, Tailwind, and code Playground

HTML

<div class="box">
HOVER    
</div>

CSS

.box {
    font-family: sans-serif;
    background-color: red;
    text-align: center;
    width:150px;
    height: 150px;
    line-height: 150px;
    font-weight: bold;
    color: #fff;
    font-size: 30px;
    margin: 60px auto;
    transition: all 800ms ease-out;
}
.box:hover {
    width: 200px;
    height: 200px;
    line-height: 200px;
    background-color: #fff;
    box-shadow: 0 0 5px 10px #ddd;
    color: red;
    transform: rotate(360deg);
    border-radius: 50% 50%;
    border: 5px solid red;
}