Edit in JSFiddle

<a href="http://lesson8.blogspot.in/2012/10/rolling-links.html">Next</a>
/* Next */
a {
  font-family: sans-serif;
  font-size: 60px;
  color: black;
  padding-top: 0;
  margin-top: 0;
  text-decoration: none;
  text-shadow: 0 0 5px white;
  -webkit-transition: all 0.5s;
}

a:hover {
  color: white;
  text-shadow: 0 0 5px black;
}