CSS text effect style : demo 178

Best jQuery

HTML

                        
Best jQuery

CSS

(Fonts required : Rubik Moonrocks)
                    .text-effect{
                        color: #67875d;
                        font-family: 'Old Standard TT', serif;
                        font-size: 100px;
                        font-weight: 700;
                        text-align: center;
                        animation: animate 1.5s infinite linear alternate;
                    }
                    @keyframes animate{
                        100%{ 
                            color: #67875d;
                            text-shadow: 0 0 2px #c2e2b9,-4px 5px 0 #b5d3ac,
                                        -7px 11px 0 #a9c2a2,-12px 17px 0 #859282;
                        }
                    }
                    @media only screen and (max-width: 990px){
                        .text-effect{ font-size: 80px; }
                    }
                    @media only screen and (max-width: 767px){
                        .text-effect{ font-size: 60px; }
                    }
                    @media only screen and (max-width: 576px){
                        .text-effect{ font-size: 45px; }
                    }
                    
License Terms