css hover link style : demo 235

CSS

(Fonts required: Chakra Petch.)
                    .link{
                        color: #ef4f89;
                        font-family: 'Chakra Petch', sans-serif;
                        font-size: 20px;
                        font-weight: 600;
                        line-height: 18px;
                        text-transform: capitalize;
                        display: inline-block;
                        transition: all 0.3s ease 0s;
                    }
                    .link:focus,
                    .link:hover{
                        color: #3755ae;
                        text-shadow: 0 0 0 #000, -5px 0 0 rgba(252,103,159,0.15), 
                                    5px 0 0 rgba(252,103,159,0.15), 0 5px 0 rgba(252,103,159,0.15),
                                    0 -5px 0 rgba(252,103,159,0.15);
                    }
                    @media only screen and (max-width: 767px){
                        .link{ margin-bottom: 30px; }
                    }
                    
License Terms