  /* navbar
This block of code styles the navigation bar's brand element. 
It sets the font size to 50 pixels and specifies the font family as 'Pinyon Script' (with a fallback to the cursive font family).
**/

.navbar-toggler{
background-color: #fa38d0;
}
    /***** This code styles the navigation bar's toggle button. It sets the background color to a pinkish color (#fa38d0). ******/
    .navbar-toggler{
      background-color: #fa38d0;
    }
  *{
    padding: 0px;
    font-family: 'Courgette';
  }

  .navbar-nav {--bs-nav-link-padding-y: 0rem;}

  .nav-link {
    display: block;
    padding: 0rem 0rem;
}

