Black bar on mobile

https://ogre14t.github.io/#home

If you view this on your phone, there is a black bar going down the right side of the screen, cutting off content. I have looked over the code and I am just not seeing the issue.

It’s the overflow on your page. The page isn’t resizing to fit the phone screen and that black bar is actually the edge of your background image.
Set:

body {
   overflow-x: hidden;
}

in your css.

Thank you very much, this fixed my issue.