Edit in JSFiddle

<div class="grow">InfoStore99</div>
body > div
{
            width:300px;
            
            background:#676470;
            transition:all 0.3s ease;
            text-align: center;
            
            font-size: 20px;
            color: white;
            padding:50px 10px 50px 10px;
            
}


.grow:hover
{
        -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
        transform: scale(1.3);
        font-size:30px;
        font-weight:700;
        
}