JSFiddle - React, Tailwind, and code Playground
HTML
<div id="countdownBoxContainer">
<div id="countdownBox">
<div>hi there</div>
</div>
</div>
CSS
html,
body {
height: 100%;
}
#countdownBoxContainer {
display: table;
height: 100%;
width: 100%;
}
#countdownBox {
display: table-cell;
text-align: center;
vertical-align: middle;
}