css hover link style : demo 208

CSS

(Fonts required: Mukta.)
                    .link{
                        color: #000;
                        font-family: 'Charmonman', cursive;
                        font-size: 25px;
                        font-weight: 700;
                        text-transform: lowercase;
                        line-height: 20px;
                        letter-spacing: 1px;
                        display: inline-block;
                        transition: all 0.5s;
                    }
                    .link:focus,
                    .link:hover{
                        color: #4521c9;
                        text-shadow: 2px 0 #fff,4px 0 #bbb,6px 0 #ccc,8px 0 #ddd,10px 0 #eee;
                    }
                    .link span{
                        line-height: 20px;
                        display: block;
                    }
                    @media only screen and (max-width: 767px){
                        .link{ margin-bottom: 30px; }
                    }
                    
License Terms