JSFiddle - React, Tailwind, and code Playground
by agib
HTML
<div class="container">
<div class="content"></div>
</div>
CSS
.container {
height: 90vh;
max-width: 600px;
margin: 0 auto;
padding-top: 100px;
background-color: fuchsia;
}
.content {
display: flex;
background-color: red;
height: 500px;
width: 900px;
align-self: center;
transform: translateX(1200px - 50vw);
/*margin-left: calc(-1 * (100vw - 600px) - (1200px/2))/4);*/
}