css hover link style : demo 167

CSS

(Fonts required: Bitter.)
                    .link{
                        color: #333;
                        font-family: 'Roboto Condensed', sans-serif;
                        font-size: 25px;
                        font-weight: 500;
                        line-height: 22px;
                        text-transform: capitalize;
                        display: inline-block;
                        position: relative;
                        z-index: 1;
                        transition: all 0.4s ease 0s;
                    }   
                    .link:hover,
                    .link:focus{
                        color: #000;
                    }
                    .link:before{
                        content: "";
                        background: #FCD1F4;
                        width: 10px;
                        height: 10px;
                        border-radius: 50%;
                        box-shadow: 10px 0 0 5px #F9A9E9,25px 0 0 8px #F375D0,45px 0 0 10px #E94DB9,65px 0 0 12px #ff3dbe;
                        visibility: hidden;
                        transform: translateY(-50%) scale(0);
                        position: absolute;
                        top: 50%;
                        left: 0;
                        z-index: -1;
                        transition: all 0.5s cubic-bezier(.47,3,0.1,.3);
                    }
                    .link:hover:before{
                        visibility: visible;
                        transform:  translateY(-50%) scale(1);
                    }
                    @media only screen and (max-width: 767px){
                        .link{ margin-bottom: 30px; }
                    }
                    
License Terms