diff --git a/ascii_racer.mp4 b/ascii_racer.mp4
deleted file mode 100644
index 0917ac9..0000000
Binary files a/ascii_racer.mp4 and /dev/null differ
diff --git a/index.html b/index.html
deleted file mode 100644
index 9fbda52..0000000
--- a/index.html
+++ /dev/null
@@ -1,198 +0,0 @@
-
-
-
-
-
- ASCII RACER
-
-
-
-
-
-
- About the Game
- ASCII RACER is an exciting top-down racing game created entirely with ASCII characters. Race against the clock and your opponents on a track filled with challenges and obstacles.
-
-
-
- Download the Game
- Download ASCII RACER now and start racing in a world of ASCII art!
- Download Now
-
-
-
-
-
-
diff --git a/screenshot1.png b/screenshot1.png
deleted file mode 100644
index 9387c6b..0000000
Binary files a/screenshot1.png and /dev/null differ
diff --git a/screenshot2.png b/screenshot2.png
deleted file mode 100644
index 6a69181..0000000
Binary files a/screenshot2.png and /dev/null differ
diff --git a/serve.py b/serve.py
deleted file mode 100644
index a4eaff8..0000000
--- a/serve.py
+++ /dev/null
@@ -1,11 +0,0 @@
-import http.server
-import socketserver
-
-PORT = 8002
-
-Handler = http.server.SimpleHTTPRequestHandler
-
-httpd = socketserver.TCPServer(("", PORT), Handler)
-
-print("Serving at http://localhost:{}".format(PORT))
-httpd.serve_forever()