.navbar{
  background-color: rgba(250, 250, 250, 0);
  position: fixed;
  width: 100%;
}
.navbar-nav .nav-link{
  font-weight: bold;
  color: #42567b;
}
.navbar-nav .nav-link:hover {
  text-decoration: underline;
  text-decoration-color: #42567b; /* optional: custom underline color */
}
.nav-link.active{
  text-decoration: underline;
  text-decoration-color: #42567b;
}
/* 2. Add spacing between nav tabs */
.navbar-nav .nav-item {
  margin: 0 1vw; /* adjust as needed (left-right spacing) */
}
#initials{
  display: none;
}
@media (max-width: 970px) {
  .navbar{
    top: 0;
  }
  #main{
    margin-top: 55px;
  }
}
@media (max-width: 576px) {
  #initials{
    display: block;
    margin: 0 50% 0 0;
    transform: translateX(50%);
  }
  .navbar, .container{
    background-color: rgb(250, 250, 250);    
  }
  .container{
    display: flex;
    justify-content: center;
    align-items: center;
  }
}