JSFiddle - React, Tailwind, and code Playground
HTML
<div class="imgview_overlay" id="imageviewer">
<div class="overlay_content">
<div class="overlay_inner" id="overlay_img_div">
<img id="overlay_img" src="https://upload.wikimedia.org/wikipedia/en/thumb/f/f0/Information_orange.svg/256px-Information_orange.svg.png" />
</div>
</div>
</div>
CSS
.imgview_overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,.2); z-index: 500; }
.overlay_content { display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; overflow: auto; }
.overlay_inner { display: inline-block; }