JSFiddle - React, Tailwind, and code Playground
HTML
<h2></h2>
CSS
h2 {
width: 100px;
height: 100px;
color: #000;
font-size: 30px;
margin-left: 35px;
font-family: 'Open Sans Condensed', Arial;
background-color: red;
background-image: url(../img/708682.jpg);
border-radius: 50%;
transition: all 0.4s ease-in-out;
position: relative;
}
h2:hover {
-webkit-transform: scale(1.0);
width: 150px;
height: 150px;
transition: all 0.4s ease-in-out;
top: -25px;
left: -25px;
}