JSFiddle - React, Tailwind, and code Playground
HTML
<div id="page-wrap">
<div id="main-content">
<!--
Alinhar aqui no centro a div#windows
-->
</div>
</div>
<div id="windows"></div>
CSS
#page-wrap {
position: relative !important;
margin-top: 0px;
margin-left: 170px;
width: 768px;
height: 593px;
border-radius: 3px;
border: 1px solid #8e8e97;
background-color: rgb(247, 247, 247);
}
#main-content {
position: absolute;
width: 100%;
height: 100%;
background: yellow;
}
#windows {
background: red;
width: 708;
height: 538;
}