<style>
a {
position: relative;
margin: 50px;
padding: 30px;
display: block;
text-decoration: none;
color: #567489;
font-family: sans-serif;
border: 1px solid gray;
text-align: center
}
a:hover:before {
-webkit-transition: all 400ms cubic-bezier(0, 0.7, 0.5, 1);
-moz-transition: all 400ms cubic-bezier(0, 0.7, 0.5, 1);
-o-transition: all 400ms cubic-bezier(0, 0.7, 0.5, 1);
-ms-transition: all 400ms cubic-bezier(0, 0.7, 0.5, 1);
transition: all 400ms cubic-bezier(0, 0.7, 0.5, 1);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: scale(1);
-moz-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
a:before {
content: "";
position: absolute;
width: 80px;
height: 80px;
display: block;
margin-top: -40px;
margin-left: -40px;