JSFiddle - React, Tailwind, and code Playground

by Kocsten

HTML

<a href="#" class="sarunem">ZORNET.RU</a>

CSS

.sarunem {
    background-color: #2b56a2;
    text-decoration: none;
    padding: 12px 21px;
    font-family: sans-serif;
    font-size: 23px;
    color: #fff;
    border-radius: 57px;
    display: inline-block;
    transition: .8s cubic-bezier(0.25, 0.1, 0.24, 0.9);
}
.sarunem:hover {
    -webkit-box-shadow: 0px 0px 100px 0px rgb(0, 117, 255);
    -moz-box-shadow: 0px 0px 100px 0px rgba(255,165,0,1);
    box-shadow: 0px 0px 100px 0px rgb(0, 115, 255);
    transition: .8s cubic-bezier(0.25, 0.1, 0.25, 0.88);
}