#navbar {
  position: fixed;
  width: 100%;
  z-index: 100;
  background: black;
}

#navlinks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding-left: 10%;
  padding-right: 10%;
}

li a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

#navlinks li a {
  padding: 5px 10px;
  border-radius: 20px;
  transition: background 0.4s ease 0s;
}

#navlinks li a:hover {
  cursor: pointer;
  background: white;
  color: black;
}
