JSFiddle - React, Tailwind, and code Playground

HTML

<div class="a">
    <div class="b">
        <img src="https://www.cardvantagens.com.br/static/img/home/versao_dois/logo.png">
    </div>
</div>

CSS

.a{
   float:left;
   background: #CCC;
   width: 100%;
   height: 570px;
}
 .b{
     width: 35%;
    margin: 0 auto;
 }
.b img{
    width: 294px;
    height: 75px;
    margin-top: 50%;
    float: left;
}