JSFiddle - React, Tailwind, and code Playground
HTML
<div class="block">
So much
<div class="flex">Эй ты</div>
</div>
CSS
.block{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: #e6e6e6;
padding: 1rem;
}
.flex{
background-color: #F44336;
padding: 1rem;
text-align: center;
width: 100%;
margin-top: 1rem;
box-sizing: border-box;
}