CSS: Navbar button transition fix

Change transition to have both text and border color for smoothness
diff --git a/css/style.css b/css/style.css
index d514bbd..350b1dc 100644
--- a/css/style.css
+++ b/css/style.css
@@ -132,12 +132,12 @@
   .navbar.solid .navbar-brand {
     display: inline-block;
     color: #ffffff;
-    -webkit-transition: color 1s ease 0s;
-    transition: color 1s ease 0s; }
+    -webkit-transition: color 1s ease 0s, border-color 1s ease 0s;
+    transition: color 1s ease 0s, border-color 1s ease 0s; }
   .navbar.solid .navbar-nav > li > a {
     color: #ffffff;
-    -webkit-transition: color 1s ease 0s;
-    transition: color 1s ease 0s; }
+    -webkit-transition: color 1s ease 0s, border-color 1s ease 0s;
+    transition: color 1s ease 0s, border-color 1s ease 0s; }
 
 .cover {
   padding: 10% 0 10% 0; }