diff --git a/shop/static/styles.css b/shop/static/styles.css
index 7239a77e65cb7a58501997dd4fde8babd93981f7..c0b5b06974fb4301cbb86300f8b33e3dc17939d0 100644
--- a/shop/static/styles.css
+++ b/shop/static/styles.css
@@ -112,14 +112,18 @@ a:link {
     border: 2px solid black;
 }
 
-.item_home_name {
-    font-size: 200%;
+.item_shopping_name {
+    font-size: 2vw;
     color: black;
     font-family: Monaco, sans-serif;
 }
 
-.item_home_name:hover {
-    font-size: 230%;
+.shopping_item_text{
+    font-size: 1.4vw;
+}
+
+.item_shopping_name:hover {
+    font-size: 2.1vw;
 }
 
 .navbar {
@@ -331,7 +335,7 @@ li {
     margin-top: 50px;
 }
 
-.home_right_text {
+.shopping_right_text {
     font-size: 150%;
 }
 
@@ -399,11 +403,16 @@ li {
     background-color: #202020;
 }
 
-.footer_logo {
+.footer_logo_div {
     margin-left: 50px;
     margin-top: 10px;
 }
 
+.footer_logo_left {
+    height: 100px;
+    max-width: 30%
+}
+
 .footer_contact {
     color: white;
     text-align: center;
@@ -434,7 +443,7 @@ li {
 
 .start_shopping_text {
     color: white;
-    font-size: 400%;
+    font-size: 4vw;
     font-family: Andale Mono, monospace;
 }
 
diff --git a/shop/templates/cart.html b/shop/templates/cart.html
index 37f95f39ee302f95898c4b13c20b7baf59e35c9c..1e35e850abe2ad58142857a4ea439b51127125c0 100644
--- a/shop/templates/cart.html
+++ b/shop/templates/cart.html
@@ -60,8 +60,8 @@
 
 <!--repeated footer in page as dont want every page to have it-->
 <footer id="footer">
-    <div class = "footer_logo">
-        <img style = "height:100px" src = "{{ url_for('static', filename='images/dark_logo.png') }}" alt="logo image"/>
+    <div class = "footer_logo_div">
+        <img class = "footer_logo_left" src = "{{ url_for('static', filename='images/dark_logo.png') }}" alt="logo image"/>
     </div>
     <div class = "footer_contact">
         <p>Contact us:</p>
diff --git a/shop/templates/home.html b/shop/templates/home.html
index d4fd91b81cff99063096002e94e184ebe18ef142..e60b0e544bf0a0b241d441b1de61e29c15b8a982 100644
--- a/shop/templates/home.html
+++ b/shop/templates/home.html
@@ -6,11 +6,11 @@
 <div id="content-wrap">
 
     <div class = "home_right">
-        <img src = "{{ url_for('static', filename='images/cog.png') }}" alt="cog" style="width:60px;">
+        <img src = "{{ url_for('static', filename='images/cog.png') }}" alt="cog" style="width:4vw;">
     </div>
 
     <div class = "home_left">
-        <img src = "{{ url_for('static', filename='images/cog.png') }}" alt="cog" style="width:60px;">
+        <img src = "{{ url_for('static', filename='images/cog.png') }}" alt="cog" style="width:4vw;">
     </div>
 
     <h1 class = "home_title" >Rocky Alpine Cycles</h1>
@@ -33,8 +33,8 @@
 
 <!--repeated footer in page as dont want every page to have it-->
 <footer id="footer">
-    <div class = "footer_logo">
-        <img style = "height:100px" src = "{{ url_for('static', filename='images/dark_logo.png') }}" alt="logo image"/>
+    <div class = "footer_logo_div">
+        <img class = "footer_logo_left" src = "{{ url_for('static', filename='images/dark_logo.png') }}" alt="logo image"/>
     </div>
     <div class = "footer_contact">
         <p>Contact us:</p>
diff --git a/shop/templates/shopping.html b/shop/templates/shopping.html
index 5bfd29fca37f134d1938b9b44c521a4ccc4abbd7..3a53bf7f7206af13b05e629709458be60e6f1c03 100644
--- a/shop/templates/shopping.html
+++ b/shop/templates/shopping.html
@@ -7,11 +7,11 @@
 <div id="content-wrap">
 
     <div class = "shopping_side">
-        <p class = "home_right_text">You are {% if not current_user.is_authenticated %}not {% endif %}logged in.</p>
+        <p class = "shopping_right_text">You are {% if not current_user.is_authenticated %}not {% endif %}logged in.</p>
         <form action="" method="POST">
             <div>
                 <form method="POST">
-                  <div class = "home_right_text">
+                  <div class = "shopping_right_text">
                     {{ order_by_form.csrf_token }}
                     <p>
                       {{ order_by_form.order.label }} {{ order_by_form.order(class = "field_order_by") }} {{ order_by_form.submit(class = "field_order_by") }}
@@ -20,7 +20,7 @@
                 </form>
 
                 <form method="POST">
-                  <div class = "home_right_text">
+                  <div class = "shopping_right_text">
                     {{ type_form.csrf_token }}
                     <p>
                       {{ type_form.type.label }} {{ type_form.type(class = "field_order_by") }} {{ type_form.submit1(class = "field_order_by") }}
@@ -68,9 +68,9 @@
         <div class = "item_shopping_block">
             <a href="/item?id={{item.product_id}}">
                 <img class = "item_shopping_img" src = "{{ url_for('static', filename='images/' + item.product_image) }}" alt="product image"/></a>
-            <p><a class = "item_home_name" href="/item?id={{item.product_id}}"><b>{{ item.product_name }}</b></a></p>
-            <p>price: £{{ item.product_price }}</p>
-            <p>product type: {{ item.product_type }}</p>
+            <p><a class = "item_shopping_name" href="/item?id={{item.product_id}}"><b>{{ item.product_name }}</b></a></p>
+            <p class = "shopping_item_text">price: £{{ item.product_price }}</p>
+            <p class = "shopping_item_text">product type: {{ item.product_type }}</p>
             {% if current_user.is_authenticated %}
             <form method = "post">
                 <input type = "hidden" name = "item_id_cart" value = {{ item.product_id }}>
@@ -92,8 +92,8 @@
 
 <!--repeated footer in page as dont want every page to have it-->
 <footer id="footer">
-    <div class = "footer_logo">
-        <img style = "height:100px" src = "{{ url_for('static', filename='images/dark_logo.png') }}" alt="logo image"/>
+    <div class = "footer_logo_div">
+        <img class = "footer_logo_left" src = "{{ url_for('static', filename='images/dark_logo.png') }}" alt="logo image"/>
     </div>
     <div class = "footer_contact">
         <p>Contact us:</p>
diff --git a/shop/templates/wishlist.html b/shop/templates/wishlist.html
index 7885df67c5bcf20c28a534e46afdbd8d9191f8c3..bf614eb7b542b2bfd66001db6f0cf79720278786 100644
--- a/shop/templates/wishlist.html
+++ b/shop/templates/wishlist.html
@@ -47,8 +47,8 @@
 
 <!--repeated footer in page as dont want every page to have it-->
 <footer id="footer">
-    <div class = "footer_logo">
-        <img style = "height:100px" src = "{{ url_for('static', filename='images/dark_logo.png') }}" alt="logo image"/>
+    <div class = "footer_logo_div">
+        <img class = "footer_logo_left" src = "{{ url_for('static', filename='images/dark_logo.png') }}" alt="logo image"/>
     </div>
     <div class = "footer_contact">
         <p>Contact us:</p>