JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="element">Element</div>
</div>
CSS
.container {
position: relative;
display: flex;
width: 600px;
height: 600px;
border: 3px solid lightblue;
}
.element {
margin: auto;
width: 200px;
height: 200px;
background-color: red;
}