
/* Create a sticky/fixed navbar */
#navbar {
  overflow: hidden;
  background-image: linear-gradient(to right, rgba(88,42,18,0.6), rgba(228,173,200,0.2));
  padding: 90px 10px; /* Large padding which will shrink on scroll (using JS) */
  transition: 0.4s; /* Adds a transition effect when the padding is decreased */
  position: fixed; /* Sticky/fixed navbar */
  width: 90px;
  top: 50px; /* At the top */
  right: 0;
  z-index: 99;
  border-radius: 9px 0px 0px 9px;
}

/* Style the navbar links */
#navbar a {
  float: left;
  color:  white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
  border-radius: 3px;
}

/* Style the logo */
#navbar #logo {
  font-size: 35px;
  font-weight: bold;
  transition: 0.4s;
}

#navbar #logoT img {
  display:block;
}


/* Links on mouse-over */
#navbar a:hover {
  background-color: #36AEBF;
  color: black;
}

/* Style the active/current link */
#navbar a.active {
  background-color: #078BC9;
  color: white;
}

/* Display some links to the left */
#navbar-right {
  float: left;
}

/* Add responsiveness - on screens less than 580px wide, display the navbar vertically instead of horizontally */
@media screen and (max-width: 800px) {
  #navbar {
    width: 90px;
    padding: 20px 10px !important; /* Use !important to make sure that JavaScript doesn't override the padding on small screens */
  }

  #navbar a {
    float: none;
    display: block;
    text-align: left;
    font-size: 12px;
    line-height: 15px;
  }

}
