JSFiddle - React, Tailwind, and code Playground

HTML

<div class="circle">Your Text</div>

CSS

.circle { 
    background:red;
    border-radius:300px;
    height:150px;
    line-height:150px;
    text-align:center;
    text-shadow:0 1px rgba(255,255,255,.5);
    width:150px;
}

JavaScript

(function() {

    $('.circle').hover(
        function(){
            $(this).animate({
                height: '+=70',
                width: '+=70',
                lineHeight: '150px'
            });
        },
        function(){
            $(this).animate({
                height: '-=50',
                width: '-=50',
                lineHeight: '150px'
            });
        }
    );

})();