diff --git a/PITCHME.md b/PITCHME.md
index c61366d..e192990 100644
--- a/PITCHME.md
+++ b/PITCHME.md
@@ -1,43 +1,45 @@
@title[Introduction]
-# GitPitch
+
+# GitPitch
#### Markdown Presentations For Everyone on Git.*
-[ GitHub, GitLab, Bitbucket, GitBucket, Gitea, Gogs ]
+[ GitHub, GitLab, Bitbucket, GitBucket, Gitea, Gogs ]
---
+
@title[PITCHME.md]
-#### GitPitch turns PITCHME.md into
+#### GitPitch turns PITCHME.md into
#### interactive,
#### online and offline slideshows.
-[ JUST LIKE THIS ONE ]
+Just like this one...
---
-#### No more Keynote.
-#### No more Powerpoint.
+#### No more Keynote.
+#### No more Powerpoint.
-#### Just Markdown.
-#### Then Git-Commit.
+#### Just Markdown.
+#### Then Git-Commit.
---
+
@title[Step 1. PITCHME.md]
-### STEP 1. Create 'PITCHME.md'
+### STEP 1. Create 'PITCHME.md'
-
#### Create GitPitch slideshow content using GitHub Flavored Markdown in your favorite editor.
-
-[ AS EASY AS README.md WITH SIMPLE --- SLIDE DELIMITER ]
+It's as easy as README.md with simple slide-delimeters (---)
---
+
@title[Step 2. Git-Commit]
-### STEP 2. GIT-COMMIT
+### STEP 2. GIT-COMMIT
```shell
@@ -46,7 +48,6 @@ $ git commit -m "New slideshow content."
$ git push
Done!
-
```
@[1](Add your PITCHME.md slideshow content file.)
@@ -55,36 +56,35 @@ Done!
@[5](Supports GitHub, GitLab, Bitbucket, GitBucket, Gitea, and Gogs.)
---
+
@title[Step 3. Done!]
-### STEP 3. GET THE WORD OUT!
-
+### STEP 3. GET THE WORD OUT!
+
+![GitPitch Slideshow URLs](assets/images/gp-slideshow-urls.png)
-
-https://gitpitch.com/user/repo/branch
-
-
#### Instantly use your GitPitch slideshow URL to promote, pitch or present absolutely anything.
---
+
@title[Slide Rich]
-### Slide Rich
+### Slide Rich
#### Code Presenting for Blocks, Files, and GISTs
#### Image, Video, Chart, and Math Slides
-#### Multiple Themes With Easy Customization
+#### Multiple Themes with Easy Customization
-#### Plus collaboration is built-in...
-#### Your Slideshow Is Part Of Your Project
-#### Under Git Version Control Within Your Git Repo
+#### Plus collaboration is built-in...
+#### Your Slideshow is Part of Your Project
+#### Under Git Version Control within Your Git Repo
---
@title[Feature Rich]
-### Feature Rich
+### Feature Rich
#### Present Online or Offline
#### With Speaker Notes Support
@@ -95,6 +95,6 @@ Done!
---
### Go for it.
-### Just add PITCHME.md ;)
+### Just add PITCHME.md ;)
-[ Click To Learn More On Wiki ]
+[Click here to learn more...](https://github.com/gitpitch/gitpitch/wiki)
diff --git a/PITCHME.yaml b/PITCHME.yaml
index b58d7a7..b047cb8 100644
--- a/PITCHME.yaml
+++ b/PITCHME.yaml
@@ -1,4 +1,5 @@
theme : night
-background : images/wallpaper.jpg
-logo : images/logo.png
+theme-override : assets/css/PITCHME.css
+background : assets/images/wallpaper.jpg
+logo : assets/images/logo.png
transition : none
diff --git a/assets/css/PITCHME.css b/assets/css/PITCHME.css
new file mode 100644
index 0000000..522d541
--- /dev/null
+++ b/assets/css/PITCHME.css
@@ -0,0 +1,35 @@
+.gold {
+ color: #e49436;
+}
+
+.gray {
+ color: gray;
+}
+
+span.byline, span.aside {
+ color: #bbb;
+}
+
+span.byline {
+ font-size: 80%;
+}
+
+span.aside {
+ font-size: 0.7em;
+ font-style: italic;
+}
+
+.reveal section img {
+ border: 0;
+ box-shadow: none;
+ background: none;
+}
+
+.reveal section a {
+ color: #e49436;
+ text-decoration: underline;
+}
+
+.reveal section a:hover {
+ color: #e7ad52;
+}
diff --git a/assets/images/gp-slideshow-urls.png b/assets/images/gp-slideshow-urls.png
new file mode 100644
index 0000000..ae1b343
Binary files /dev/null and b/assets/images/gp-slideshow-urls.png differ
diff --git a/images/logo.png b/assets/images/logo.png
similarity index 100%
rename from images/logo.png
rename to assets/images/logo.png
diff --git a/images/wallpaper.jpg b/assets/images/wallpaper.jpg
similarity index 100%
rename from images/wallpaper.jpg
rename to assets/images/wallpaper.jpg