css hover link style : demo 240

CSS

(Fonts required: Vollkorn.)
                    .demo{ background: #b71540;}
                    .link{
                        color: #fff;
                        font-family:'Vollkorn', serif;
                        font-size: 24px;
                        font-weight: 500;
                        line-height: 20px;
                        text-transform: capitalize;
                        display: inline-block;
                        position: relative;
                        z-index: 1;
                        transition: all 0.5s ease 0s;
                    }
                    .link:focus,
                    .link:hover{ 
                        color: #fff; 
                        transform: scale(1.05);
                        text-shadow: 0 0 15px #fff;
                    }
                    @media only screen and (max-width: 767px){
                        .link{ margin-bottom: 30px; }
                    }
                    
License Terms