diff --git a/css/default_style.css b/css/default_style.css
index ebd27e67a9e1acddb9f059c01e3a06bf87086d55..2d02ef54a99e62456a8517431ae34ccb08724cf4 100755
--- a/css/default_style.css
+++ b/css/default_style.css
@@ -1,6 +1,11 @@
 .frame {
-    width: 600px;
+    width: 360px;
+    height: 450px;
 	margin: 50px auto;
+    padding-right: 20px;
+    padding-left: 20px;
+    border-top: 0.5px solid black;
+    border-bottom: 0.5px solid black;
     border-left: 0.5px solid black; 
     border-right: 0.5px solid black;
 }
@@ -48,6 +53,19 @@ a:hover {
 
 .menu {
     border: 0.5px solid black; 
-    width: 199px; 
+    width: 119px;
     float: left;
+    text-align: center;
+}
+
+.menu > h3 {
+    margin-top: 5%;
+    margin-bottom: 5%
+}
+
+.menu_container {
+    background-color: red; 
+    width: 360px;
+    margin-left: auto;
+    margin-right: auto;
 }
\ No newline at end of file
diff --git a/css/header.css b/css/header.css
index 1dda58a6ce2764f149dc6de7689df76414fe4512..623e5db6803bece72be774373f097e124df24ad9 100644
--- a/css/header.css
+++ b/css/header.css
@@ -1,5 +1,4 @@
 .header {
-    border-bottom-style: solid;
     height: 55px;
 }
 .logo {
diff --git a/profile_page/profile.php b/profile_page/profile.php
index fe0ee7107ff1831532a3653cd38719227aa266f1..6e1a1b5dfbe66d59e90b4948c694ccbe90b34f4c 100755
--- a/profile_page/profile.php
+++ b/profile_page/profile.php
@@ -26,7 +26,7 @@
                 mysqli_close($con);
             ?>
         </div>
-        <div style="background-color: white; max-width: 600px; margin-left: auto; margin-right: auto">
+        <div class="menu_container">
             <?php include'../template/menu.php';?>
         </div>
         <div class="profile_container">
diff --git a/template/menu.php b/template/menu.php
index 35d90f758e5aafd506d44043a857df98c7d0094c..77287cef12da26fdd8bbdd581805fac459a49fea 100644
--- a/template/menu.php
+++ b/template/menu.php
@@ -2,17 +2,17 @@
     echo '
     <a href="order/order.php" name="order_link">
 	<div class="menu" id="order_link">
-		<h2>Order</h2>
+		<h3>Order</h3>
 	</div>
 	</a>
 	<a href="history/history.php" name="history_link">
 	<div class="menu" id="history_link">
-		<h2>History</h2>
+		<h3>History</h3>
 	</div>
 	</a>
 	<a href="profile/profile.php" name="profile_link">
 	<div class="menu" id="profile_link">
-		<h2>My Profile</h2>
+		<h3>My Profile</h3>
 	</div>
 	</a>
     ';