header {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1;
}
.navbar-nav .nav-link {
    color: #fff; /* Set default text color to white */
    transition: font-weight 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    font-weight: bold;
    color: #fff; /* Ensure color stays white on hover and active state */
}

.navbar {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .brand {
    background-color: #FFDE59; /* Background color for "EvoQuest" */
    padding: 5px 10px;
    border-radius: 5px; /* Optional for rounded corners */
    font-weight: bold;
  }
  
  .navbar a {
    color: #D32000;
    text-decoration: none;
  }
  
  .navbar a:hover {
    text-decoration: underline;
  }
  

footer {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #bbb;
}
