JSFiddle - React, Tailwind, and code Playground

HTML

<div class='fullscreenDiv'>
    <div class="center">Прикольно же — идёшь по ссылке а там текст. Гораздо удобнее, чем сразу читать.</div>
</div>

CSS

.fullscreenDiv {
    background-color: #e8e8e8;
    width: 100%;
    height: auto;
    bottom: 0px;
    top: 0px;
    left: 0;
    position: absolute;
}
.center {
    line-height: 50px;
    text-align: center;
    position: absolute;
    width: 400px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -200px;
}