I've added code to enlarge the text when it is moused over but it is not working. Can anyone see the reason why? Here is my jsfiddle. I don't think it matters but the font being used in the actual code is being loaded through font-face but I thought i should mention it.
<style>
.headerText {transition: all .2s ease-in-out;}
.headerText:hover {transform: scale(2.1);}
a.headerText {
font-family: arial;
font-weight:bold;
font-style:none;
font-size:28px;
text-decoration:none;
text-align:center;
color:purple;
white-space:nowrap;
margin-left:20px;
line-height:1.6;
}
a.headerText:hover {color:green;}
</style>
<span class="headerText"><a class="headerText" href="http://example.com">my link</a></span>