JSFiddle - React, Tailwind, and code Playground

HTML

<a href="#">
    <img src="http://macroland.ru/rentacar/car.jpg" alt="" />
    <span>Заказать автомобиль</span>
</a>

CSS

a {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font: normal 16px/1 sans-serif;
    color: #000;
}
img {
    display: block;
}
span {
    display: inline-block;
    margin: 10px 0 0;
    padding: 10px 30px;
}
a:hover span {
    background-color: rgb(199, 131, 8);
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}