<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.circle
{
margin:121px 149px;
width:483px;
height:298px;
background:#676470;
color:#fff;
font-family:Lato;
font-weight:900;
font-size:3.4em;
text-align:center;
line-height:298px;
transition:all 0.3s ease;
}
.circle:hover
{
border-radius:50%;
}
</style>
</head>
<body>
<div class="circle">Square to Circle</div>
</body>
</html>