diff --git a/src/assets/stylesheets/spoke.scss b/src/assets/stylesheets/spoke.scss
index 05efdc720fce853f162ca07ca31b336794ad7f16..f20052d8aa142b97c56feb7fc088f140f86f6c92 100644
--- a/src/assets/stylesheets/spoke.scss
+++ b/src/assets/stylesheets/spoke.scss
@@ -3,6 +3,7 @@
 
 $spoke-action-color: #2F80ED;
 $breakpoint: 1280px;
+$mobile-breakpoint: 450px;
 
 body {
   @extend %default-font;
@@ -64,6 +65,10 @@ body {
 
   img {
     width: 400px;
+
+    @media(max-width: $mobile-breakpoint) {
+      width: 320px;
+    }
   }
 }
 
@@ -81,6 +86,10 @@ body {
   text-align: center;
   margin-top: 48px;
 
+  @media(max-width: $mobile-breakpoint) {
+    font-size: 1.3em;
+  }
+
   a {
     color: white;
   }