I had to edit main.py to be able to play the game.
What to do:
Add this line on the top of the file:
from pathlib import Path
repleace all
pygame.image.load("path")
with
pygame.image.load(Path("path"))
and rename file "Hard.png" in Assets folder to "hard.png"
After all of this changes, the code should run.