JSFiddle - React, Tailwind, and code Playground

HTML

<div>Esticazzi</div>

CSS

div{/* background:url('http://lorempixel.com/200/200/'); */margin:30px; 
-webkit-animation: blurra 1s alternate infinite;
    font-family:Georgia;
    font-size:80px;
    overflow:visible;
   
}
@-webkit-keyframes blurra{
    0% {-webkit-filter: blur(0px);}
    100% {-webkit-filter: blur(10px);}
    }