JSFiddle - React, Tailwind, and code Playground

HTML

<div>
        <div class='element'>Хоум</div>
    </div>

    <div>
        <div class='element2'>
            <div>Хоум</div>
        </div>
    </div>

CSS

.element {
  background-image: url('http://habrastorage.org/storage2/cb6/d8d/3e0/cb6d8d3e0b59f85787ec68c77b2e7fd4.png');
  background-repeat: no-repeat;
  width: 244px;
  height: 73px;
  color: yellow;
  padding: 27px 0 0 130px;
}
.element2 {
  background-image: url('http://habrastorage.org/storage2/cb6/d8d/3e0/cb6d8d3e0b59f85787ec68c77b2e7fd4.png');
  background-repeat: no-repeat;
  width: 244px;
  height: 73px;
  color: yellow;
  padding-top: 27px;
}
.element2 div {
    float: right;
  padding-right: 75px;
}