diff --git a/public/favicon.ico b/public/favicon.ico
deleted file mode 100644
index a11777cc471a4344702741ab1c8a588998b1311a..0000000000000000000000000000000000000000
Binary files a/public/favicon.ico and /dev/null differ
diff --git a/public/favicon.png b/public/favicon.png
new file mode 100644
index 0000000000000000000000000000000000000000..b436f128962f77e4e68bbf9d80d25db4f94a759f
--- /dev/null
+++ b/public/favicon.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:366ba976d5979c4d54399c3dc2495c65a7a03afa68fe2848ff440c528523ccc7
+size 955
diff --git a/public/index.html b/public/index.html
index e6a8f6a81b711a00266626299d82059520f05c78..049cdd13533333ee1376e1e1afe5bcc4a1f65052 100644
--- a/public/index.html
+++ b/public/index.html
@@ -2,7 +2,7 @@
 <html lang="en">
   <head>
     <meta charset="utf-8" />
-    <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
+    <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.png" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="theme-color" content="#000000" />
     <!--
@@ -19,7 +19,7 @@
       work correctly both with client-side routing and a non-root public URL.
       Learn how to configure a non-root public URL by running `npm run build`.
     -->
-    <title>React App</title>
+    <title>Open Baba</title>
     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" integrity="sha256-l85OmPOjvil/SOvVt3HnSSjzF1TUMyT9eV0c2BzEGzU=" crossorigin="anonymous" />
   </head>
   <body>
diff --git a/src/App.js b/src/App.js
index 28afd732d085e3d641fc4330225d3ee1394afc4e..60b5851482fecbba78f7d3c9fd22352cd012eb02 100644
--- a/src/App.js
+++ b/src/App.js
@@ -33,7 +33,7 @@ class App extends Component<{}> {
                                                                                       step={0.25}/></div>
                 </div>
                 <div className="root-container" style={showOptions && {marginLeft: 420} || {}}>
-                    <button onClick={this.set('showOptions', s => !s.showOptions)}>Show Options</button>
+                    <button onClick={this.set('showOptions', s => !s.showOptions)}>{ showOptions ? 'Hide' : 'Show' } Options</button>
                     <br/>
                     { levelData == null ? <span>LOADING</span> : <Level level={levelData} {...opts} /> }
                 </div>