#sidebar-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 5.5vw;
}

nav {
  float: left;
  margin: 0;
  padding: 0;
  width: 18%;
  background-color: #191a1f;
  position: fixed;
  height: 100%;
  overflow: auto;
  font-size: 0.95vw;
}

nav img {
  margin-bottom: 10px;
}

/* Sidebar links */
nav > a {
  display: block;
  color: #5a5c5e;
  padding: 10px;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Active/current link */
nav a.active {
  background-color: #57bec2;
  color: white;
}

/* Links on mouse-over */
nav a:hover:not(.active) {
  background-color: #555;
  color: white;
}
/* Moving the page content to adjust ot the sidebar */
.content {
  margin-left: 18%;
  padding: 1px 16px;
  height: 1000px;
}
/* On screens that are less than 700px wide, make the sidebar into a topbar */
@media screen and (max-width: 700px) {
  nav {
    width: 100%;
    height: auto;
    position: relative;
  }
  nav > a {
    float: left;
  }
  .content {
    margin-left: 0;
  }
}

/* On screens that are less than 400px, display the bar vertically, instead of horizontally */
@media screen and (max-width: 400px) {
  nav > a {
    text-align: center;
    float: none;
  }
}
