JSFiddle - React, Tailwind, and code Playground

HTML

<div class="cnt">
  <div class="ph">

    <div class="tt1">
После проверки, оплатите 400 руб<br />
Оплата производиться через <br />
Сбербанк онлайн или яндекс деньги.
    </div>

  </div>
</div>

CSS

.cnt {
  max-width: 1200px;
  min-width: 280px;
  margin: 0 auto;
  padding: 0 50px 0 50px;
  background: #111016;
  border: 3px dotted red;
}

.ph {
  max-width: 170px;
  width: 40%;
  background: url(http://tex.ws17.ru/media/img/ph1.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
.ph::after {
  content: '';
  display: block;
  padding-top:350%;
}

.tt1{
  width: 300px;
  font-weight: 400;
  //font-size: 16px;
  font-size: 12px;
  line-height: 21px;
  color: #fff;
  position: absolute;
  left: 85%;
  //top: 22%;
  top: 25.77%;
  transform: translateY(-50%);
}