nav {
    background-color: #00aeef;
    box-shadow: 5px 5px 0px -1px #00aeef;
    
    padding-top: 1rem;
    border-bottom: 3px solid black;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 10000;
 

  }

  nav ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    right: .5rem;
  }

  nav li{
    height: 3rem;
  }
nav a{
    height: 100%;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    color: #fff;
    font-family: "ccmeanwhile", sans-serif;
    font-style: normal;
}



nav a:hover{
    background-image: url(/img/icons/nav_border-bottom.svg);
    background-repeat: no-repeat;
    background-position: center;

}

/* nav a:first-child:hover{
  background-image: none;
} */

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 175, 239, 0.815);
    border-left: 3px solid black;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

.sidebar li{
    width: 100vw;
}
.sidebar a{
    position: relative;
    width: 100%;
    left: -.75rem;
}


.menu-button{
    display: none;
}
.active-nav{
        background-image: url(/img/icons/nav-background.png);
        background-repeat: no-repeat;
        background-position: center;
  }

  .active-nav_font{
    color: #000;

  } 


  .top-bar li a img{
    max-height: 100%;
    position: relative;
    top: -1rem;

  }


/* MOBILE */
  @media only screen and (max-width: 768px) {

    .menu-button{
        display: block;
    }

.bg-button{
    background-color: #ec008c;
    box-shadow: -5px 5px 0px 1px #000;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    position: relative;
    left: -.5rem;

}

.top-bar a{
    padding: 0 1rem;
}

.hideOnMobile{
    display: none;
}
nav a:hover{
    background-color: #fff   ;    
    background-image: none;
    color: #000;
    border-bottom: 3px solid black;

}
nav{
  position: sticky;
  position: -webkit-sticky;
  top: 0;
   
}
/* .nav-mobile-margin{
  margin-top: 2rem;
} */
.sidebar li:not(:first-of-type){
  margin-top: 2rem;
}
}