I am trying to make every single letter get bigger on hover. I got that animation but I want to get rid of the whole sentence to move. I tried using absolute positioning; it did
Just add float: left on your span elements. But then you need to center the h1 by taking its width and making margin: auto.
float: left
span
h1
margin: auto
Fiddle