JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrapper">
<div class="centered">
<div class="content">
<h1>Some text</h1>
<p>But he stole up to us again, and suddenly clapping his hand on my shoulder, said—"Did ye see anything looking like men going towards that ship a while ago?"</p>
</div>
</div>
</div>
CSS
.wrapper {
text-align: center;
background: #c0c0c0;
border: #a0a0a0 solid 1px;
box-sizing: border-box;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: table;
border-collapse: collapse;
width: 100%;
height: 100%;
}
.centered {
display: table-cell;
vertical-align: middle;
}
.content {
width: 500px;
padding: 10px 15px;
border: #a0a0a0 solid 1px;
background: #f5f5f5;
margin: auto;
}