My overlay is only covering a portion of my page and on scrolling down it disappears how do I make t cover it all?
<div id="popup-overlay"></div>
#popup-overlay {
position: absolute;
background-color: rgba(0, 0, 0, 0.685);
width: 100%;
height: 100vh;
top: 0;
left: 0;
z-index: 9998;
display: block;
overflow-y: hidden;
overflow-x: hidden;
}