Using Chrome’s Developer Tools on my local dev work space, I’ve pin-pointed the source of the issue to a relatively newly introduced canvas element, which I don’t fully understand. I’ve read w3school’s doc along with Chris Coyier’s blog post on HTML canvas and I don’t really understand how to use the canvas element properly.
How might you fix this? What property or value may be necessary to eliminate this red box?
The crimson is because that is the background color on the body element. You are seeing it because the title class does not go the full height of your screen, so the rest is the body element bleeding through.
Thank you, @PaulOB! This worked. All we needed was to add the fixed value to the position property part of the .canvas class. I knew the answer was going to be trivial. Thanks again, my friend!