diff --git a/screenshare/src/index.html b/screenshare/src/index.html
index 41cd7a4502..5d3441ea76 100644
--- a/screenshare/src/index.html
+++ b/screenshare/src/index.html
@@ -41,13 +41,13 @@
                 </p>
             </div>
             <div id="button_selection">
-                <div id="yes" class="button_confirmation"  onClick="screenConfirmed(true)">
-                    Yes, share this content
+                <div id="yes" class="button_confirmation grey_background" onClick="screenConfirmed(true)">
+                    YES, SHARE THIS CONTENT
                 </div>
                 <div id="no" class="button_confirmation" onClick="screenConfirmed(false)">
                     No, don't share this content
                 </div>
-            </div> button_selection
+            </div>
         </div> <!-- confirmation screen -->
         <script src="app.js"></script>
         <script src="https://static.opentok.com/v2/js/opentok.min.js"></script>
diff --git a/screenshare/src/main.js b/screenshare/src/main.js
index 6b01e47210..576e37b3a8 100644
--- a/screenshare/src/main.js
+++ b/screenshare/src/main.js
@@ -18,7 +18,7 @@ if (osType == "Darwin" || osType == "Linux") {
     height = 660;
 } else if (osType == "Windows_NT") {
     width = 973;
-    height = 735;
+    height = 740;
 }
 
 if (!gotTheLock) {
diff --git a/screenshare/src/styles.css b/screenshare/src/styles.css
index c40fdbe024..ad2f316e5c 100644
--- a/screenshare/src/styles.css
+++ b/screenshare/src/styles.css
@@ -1,5 +1,5 @@
 body {
-  background: black;
+  background-color: black;
   box-sizing: border-box;
   /* display: -webkit-flex; */
   /* -webkit-justify-content: center; */
@@ -41,14 +41,18 @@ body {
 .button_confirmation {
     margin: 4px;
     cursor: pointer;
-    width: 250px;
-    height: 75px;
-    line-height: 75px;
+    width: 300px;
+    height: 32px;
+    line-height: 32px;
     text-align: center;
     vertical-align: middle;
     color: white
 }
 
+.grey_background {
+  background-color: #191919;
+}
+
 #no {
     color: rgba(1, 152, 203,0.7);
 }