JSFiddle - React, Tailwind, and code Playground

HTML

<div class="page">This should be vertically centered on your screen</div>

CSS

.page {
  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  display:table;
}