JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">

<div>
  Some vertical and horizontal aligned text
</div>

</div>

CSS

.container{
	height: 100vh; 
	display: flex; 
	align-items: center; 
	justify-content: center;
}