<style>
.text-glow{
    font-size:4em;
    color: #FFFFFF;
    font-family:Arial;
 
}
 h1 {font-size:125px;
}
.text-glow:hover,
.text-glow:focus
.text-glow:active{
    -webkit-stroke-width: 5.3px;
    -webkit-stroke-color: #FFFFFF;
    -webkit-fill-color: #FFFFFF;
    text-shadow: 1px 0px 20px red;
    -webkit-transition: width 0.3s; /*Safari & Chrome*/
    transition: width 0.8s;
    -moz-transition: width 0.3s; /* Firefox 4 */
    -o-transition: width 0.3s; /* Opera */
     
}
 
.text-glow a{
     
    -webkit-transition: all 0.3s ease-in; /*Safari & Chrome*/  
    transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in; /* Firefox 4 */
    -o-transition: all 0.3s ease-in; /* Opera */
     
    text-decoration:none;
    color:white;
}
 
body{
    background-color: #000000;
}
</style>