css hover link style : demo 185

CSS

(Fonts required: Fredoka One.)
                    .link{
                        color: #4b6584;
                        font-family: 'Fredoka One', cursive;
                        font-size: 22px;
                        line-height: 19px;
                        letter-spacing: 0.5px;
                        text-transform: capitalize;
                        display: inline-block;
                        transition: all 0.3s ease 0s;
                    }
                    .link:hover,
                    .link:focus{
                        color: rgba(235,59,90,0.8);
                        text-shadow: -3px -3px rgba(235,59,90,0.2);
                        font-size: 25px;
                    }
                    @media only screen and (max-width: 767px){
                        .link{ margin-bottom: 30px; }
                    }
                    
License Terms