
.navbar {
    border-bottom:#dc3545 solid 8px;
    padding:20px;
/* Remove border around hamburger menu when active */
    --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0); 
    --bs-navbar-toggler-border-radius: 0rem; 
    --bs-navbar-toggler-focus-width: 0rem;
}

.navbar-brand {
    font-size:20px;
    text-transform: uppercase;
    font-weight:900;
}

.nav-link{
    color:white;
    font-weight:bold;
    font-size:1.2rem;
}
 
 .nav-link:hover {
    color:#dc3545;
 }
 /* change the color of the toggler icon */
 .navbar-toggler-icon {
    background-color: #45f7e7;
    border-radius: 2px;
    filter: invert(100%);
    border:none;
 }

 /* change the color of the active link: , .navbar-nav .show>.nav-link  */
 .navbar-nav .nav-link.active{
    color: #f8f9fa;
}

