JSFiddle - React, Tailwind, and code Playground

HTML

Test text is before the floating layer
<div id="glassPane"></div>
Blah I am after the floating layer

CSS

div#glassPane {
   height: 98%;
   width: 98%;
   border: 1px solid rgba(0,0,0,0.5);
   border-radius: 10px;
   background: rgba(0,0,0,0.25);
   box-shadow: 0 2px 6px rgba(0,0,0,0.5), inset 0 1px rgba(255,255,255,0.3), inset 0 10px rgba(255,255,255,0.2), inset 0 10px 20px rgba(255,255,255,0.25), inset 0 -15px 30px rgba(0,0,0,0.3);
   position: absolute;
   top: 0px;
   left: 0px;
   margin: 5px;
}