diff --git a/TealCode/main/static/main/css/style.css b/TealCode/main/static/main/css/style.css
index 564800c..017dec2 100644
--- a/TealCode/main/static/main/css/style.css
+++ b/TealCode/main/static/main/css/style.css
@@ -22,6 +22,31 @@ body header h1{
letter-spacing: 5.5px;
}
+body header div{
+ float: right;
+ margin-top: -25px;
+ margin-right: 100px;
+}
+
+
+body header div a{
+ letter-spacing: 1.5px;
+ padding-right: 30px;
+ cursor:pointer;
+ transition: 0.1s;
+ transition-timing-function: linear;
+ font-weight: bold;
+}
+
+
+body header div a:hover{
+ color:rgb(226, 4, 255);
+
+ text-decoration: underline;
+}
+
+
+
body main #main-content{
background-color: rgb(26, 26, 29);
width: 700px;
diff --git a/TealCode/main/templates/main/base.html b/TealCode/main/templates/main/base.html
index f937fe9..8ef0367 100644
--- a/TealCode/main/templates/main/base.html
+++ b/TealCode/main/templates/main/base.html
@@ -19,7 +19,14 @@