JSFiddle - React, Tailwind, and code Playground

by Qwerty_Wasd

HTML

<button>Кнопка</button>

CSS

button {
    font-weight: 400;
    font-size: 1.5em;
    line-height: 1.2;
    padding: 15px 25px;
    border: 2px solid #fff;
    color: #fff;
    text-transform: uppercase;
    background-image: linear-gradient(to bottom, #f26c4b 0%, #eda652 51%, #f26c4b 100%);
    background-size:200% 200%;
    transition: all .2s ease-in-out;
    text-align: center;
}
button:hover {
  background-position: bottom center;
}