JSFiddle - React, Tailwind, and code Playground
by hiral
HTML
<div class="container">
<div class="pop"></div>
</div>
<div class="overlay"></div>
CSS
*{margin:0;padding:0}
html,body{height:100%;width:100%}
.overlay{background:#000;opacity:0.75;z-index:2;height:100%;width:100%;top:0;left:0}
.container{position:absolute;z-index:1;top:0;left:0;height:100px;width:100px;background:red}
.pop{position:fixed;z-index:3;top:0;left:0;background:#fff;height:50px;width:50px;}