JSFiddle - React, Tailwind, and code Playground

HTML

<div class="a"></div>
<div class="screen"></div>

CSS

.a {
    height: 3000px;
    background: yellow;
}
.screen {
    z-index: 100;
    position: fixed;
    background: gray;
    width: 100%;
    height: 100%;
    box-sizing: border-box; /* чтобы не было прокрутки из-за границ */
    top: 0; left: 0;
    border: 10px solid green;
}