fire text 2

hover turns text on fire

by James Doyle

HTML

<h1>HOVER</h1>

CSS

h1 {
    font-size: 5em;
    font-weight: bold;
    font-family: arial;
    -webkit-transition: all 1s ease;
}
h1:hover {
    text-shadow: 0 0 5px #fd3, 1px 1px 2px #fd3, 0 0 4px #ccc, 0 -5px 4px #ff3, 2px -10px 6px #fd3, -2px -15px 11px #f80, 2px -18px 18px #f20;
}