CSS text effect style : demo 211

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Outfit)
                    .text-effect{
                        color: #0e84b4;
                        font-family: 'Outfit', sans-serif;
                        font-size: 100px;
                        font-weight: 700;
                        text-align: center;
                        animation: shadow 0.7s alternate infinite;
                    }
                    @keyframes shadow{
                        0%{ text-shadow: 0 0 7px #0e84b4; }
                        100%{ text-shadow: 2px 5px 10px white, 0 10px 1px #0e84b4; }
                    }
                    @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: 40px; }
                    }
                    
License Terms