diff --git a/TicketOffice/Pages/Shared/_Layout.cshtml b/TicketOffice/Pages/Shared/_Layout.cshtml
index b7ebdd1..5fdfe2a 100644
--- a/TicketOffice/Pages/Shared/_Layout.cshtml
+++ b/TicketOffice/Pages/Shared/_Layout.cshtml
@@ -3,16 +3,20 @@
- @ViewData["Title"] - Ticket Office
+
+ @ViewData["Title"] - auto.bus
+
-
+
+
+
-
- @RenderBody()
-
+
+@RenderBody()
+
diff --git a/TicketOffice/wwwroot/css/Layout.css b/TicketOffice/wwwroot/css/Layout.css
new file mode 100644
index 0000000..2ca6b3b
--- /dev/null
+++ b/TicketOffice/wwwroot/css/Layout.css
@@ -0,0 +1,40 @@
+html {
+ font-size: 16px;
+ min-height: 100%;
+ font-family: 'Roboto', sans-serif;
+ background-color: #eaeef1;
+}
+
+body {
+ margin: 0;
+}
+
+/*-----Navbar-----*/
+
+.topnav {
+ width: 100%;
+ background-color: white;
+ border-bottom: .2rem solid #78b5da;
+ overflow: auto;
+}
+
+.topnav a {
+ float: left;
+ padding: 12px;
+ text-decoration: none;
+ color: #1d4965;
+ font-size: 1.25rem;
+ font-weight: 700;
+}
+
+.topnav a:hover {
+ background-color: rgba(121, 182, 219, 0.5);
+}
+
+.topnav a.active {
+ background-color: #79b6db;
+}
+
+.topnav-right {
+ float: right;
+}
\ No newline at end of file