I'm having an issue with my box shadow on the body element. Everything looks great until I add content that causes the page to scroll beyond the viewport. The background of the body continues, but the box shadow stops short. Is there a way to extend the box shadow all the way to the bottom of the page?
CSS:
body {
width:100%;
height: 100%;
text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}
https://i.sstatic.net/lGHkg.png
Full code: https://codepen.io/jsa2025/pen/vYmbzmM