.nav {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);

  display: flex;
  justify-content: space-between;

  padding: 10px;
  vertical-align: middle;
}
.logo {
  font-weight: bold;
}

/* Style the links inside the navigation bar */
.nav a {
  float: left;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
}

/* Change the color of links on hover */
.nav-right a:hover {
  background-color: #c0c0c0;
  color: rgb(255, 255, 255);
  border-radius: 25px;
}