css hover link style : demo 154

CSS

(Fonts required: Glory.)
                    .link{
                        color: #333;
                        font-family: 'Glory', sans-serif;
                        font-size: 25px;
                        font-weight: 700;
                        letter-spacing: 1px;
                        text-transform: capitalize;
                        line-height: 20px;
                        display: inline-block;
                        position: relative;
                        transition: all 0.3s ease 0s;
                    }
                    .link:hover,
                    .link:focus{
                        color: transparent;
                        text-shadow: 2px 2px #eb3b5a,4px 4px #f7b731,6px 6px #0fb9b1;
                    }
                    @media only screen and (max-width: 767px){
                        .link{ margin-bottom: 30px; }
                    }
                    
License Terms