diff --git a/index.php b/index.php
index b70ba78..8ae972a 100644
--- a/index.php
+++ b/index.php
@@ -4,15 +4,24 @@ require __DIR__."/vendor/autoload.php";
 
 
 $source = file_get_contents(dirname(__FILE__)."/README.md");
-//$source = file_get_contents(dirname(__FILE__)."/tests/paragraph.md");
-//$source = file_get_contents(dirname(__FILE__)."/tests/list.md");
 
 echo "
 <style>
 	body {
+		padding: 4rem;
+		margin: 0;
 		font-family: sans-serif;
 	}
 
+	img {
+		max-width: 100%;
+	}
+
+	code {
+		word-break: break-word;
+		white-space: break-spaces;
+	}
+
 	table {
 		width: 100%;
 	}