diff --git src/wp-content/themes/twentythirteen/inc/custom-header.php src/wp-content/themes/twentythirteen/inc/custom-header.php
index 3214f63..6c01258 100644
--- src/wp-content/themes/twentythirteen/inc/custom-header.php
+++ src/wp-content/themes/twentythirteen/inc/custom-header.php
@@ -107,6 +107,16 @@ function twentythirteen_header_style() {
 			background: url(<?php header_image(); ?>) no-repeat scroll top;
 			background-size: 1600px auto;
 		}
+		@media (max-width: 767px) {
+			.site-header {
+				background-size: 768px auto;
+			}
+		}
+		@media (max-width: 359px) {
+			.site-header {
+				background-size: 360px auto;
+			}
+		}
 	<?php
 		endif;
 
diff --git src/wp-content/themes/twentythirteen/style.css src/wp-content/themes/twentythirteen/style.css
index 0ad8a2c..02deef5 100644
--- src/wp-content/themes/twentythirteen/style.css
+++ src/wp-content/themes/twentythirteen/style.css
@@ -2746,6 +2746,13 @@ footer.entry-meta {
 
 /* Collapse oversized image and pulled images after iPad breakpoint. */
 @media (max-width: 767px) {
+	.site-header .home-link {
+		min-height: 0;
+	}
+	.site-title {
+		font-size: 36px;
+		padding: 8px 0 10px;
+	}
 	.entry-content img.alignleft,
 	.entry-content .wp-caption.alignleft {
 		margin-left: 0;
@@ -2943,6 +2950,13 @@ footer.entry-meta {
 
 /* Mobile devices */
 @media (max-width: 359px) {
+	.site-title {
+		font-weight: normal;
+	}
+	.site-description {
+	    clip: rect(1px, 1px, 1px, 1px);
+	    position: absolute;
+	}
 	.gallery {
 		margin-left: 0;
 	}
