CSS text effect style : demo 198

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Fredoka)
                    .text-effect{
                        color:#fff;
                        font-family: 'Fredoka', sans-serif;
                        font-size: 100px;
                        font-weight: 600;
                        text-align: center;
                        letter-spacing: 4px;
                        animation: animate 1s linear infinite;
                    }
                    @keyframes animate{
                        0%{ text-shadow: 0 -3px 0 #ddd, 0 3px 0 #111, -3px 0 #666, 3px 0 #666,-3px -3px 0 #999, 
                                        3px -3px 0 #999, 3px 3px 0 #333, -3px 3px 0 #333; }
                        100%{  text-shadow: none; }
                    }
                    @media only screen and (max-width: 990px){
                        .text-effect{ font-size: 70px; }
                    }
                    @media only screen and (max-width: 767px){
                        .text-effect{ font-size: 60px; }
                    }
                    @media only screen and (max-width: 576px){
                        .text-effect{ font-size: 35px; }
                    }
                    
License Terms