#navBar {
  background-color: transparent; /* Example background color */
  color: white;
  padding: 15px 20px;
  position: sticky; /* Make the navbar fixed */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100; /* Ensure it's on top of other elements */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#navBar a { 
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ff00e6;
  padding: 15px;
  border-radius: 25px;
}