/* Navigation Bar */
nav {
    margin-top: 10px;
    display: flex; /* Use flexbox for layout */
    flex-wrap: nowrap; /* Prevent elements from wrapping to a new line */
    justify-content: center; /* Distribute the elements evenly */
    position: relative;
    width: 95%;
    max-width: 95%;
    height: fit-content;
    border-radius: 5px;
    font-size: 0;
    align-items: center;
    margin-right: auto;
    margin-left: auto;

    background-color: rgba(0, 0, 0, 0.7);
    padding-top: 2px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
}

.nav-link{
    margin: 5px;
  line-height: 50px;
  height: 100%;
  font-size: 18px;
  display: inline-block;
  position: relative;
  z-index: 1;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  width: 20%;
  border-radius: 5px;
  border: 2px solid transparent; 
  transition: border 0.3s ease;
}

.nav-link:hover {
  border: 2px solid white; 
}

#nav-logo {
    margin-left: 5px;
    max-height: 50px; /* Limit the height of the logo */
    border-radius: 5px; /* Rounded corners */
    
}

@media (max-width: 750px) {
  
  h1{
    margin-bottom: 0px;
  }
  nav{
    margin-top: 10px;
  }
  nav a {
    font-size: 3.5vw;
  }
  
}