Local Storage Save location

Added a test for using Local Storage on the Currently working on page.
It is fairly simple. I just took the movement code from the Render Tiles & Movement and added the Player Object to local Storage with localStorage.setItem("Player", JSON.stringify(player));.
Then with a simple press of a button on the keyboard I can update the Player in Local Storage.
To render the saved X and Y position I loaded the Local Storage Object into a variable with JSON.parse(localStorage.getItem("Player"));
Quite easy!

Rect Collision

Added a test for Collision on the Currently working on page.
It is a bit of a mess, and probably not that performant when it comes to an actual usecase. Especially since I want to use it for a tile based system. But oh well.
That is something I have to look into at a later date ;)

New Homepage Style

I am learning a lot about CSS and HTML at the moment.
Wrapping my head around stuff like "justify-content", the order of operation and how it all interacts with one another is quite confusing.
That is why I am verry gratefull for the ability to inspect websites to see how others have done it as well as online resources like Stack Overflow and W3Schools

Milk