
.navbar{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  display: none;
  align-items: center;
}
.navbar li{
  list-style: none;
}
.navbar a{
  color: white;
  text-decoration: none !important;
}
			
.nav-menu{
  display: flex;
  align-items: left;
}

/* transition for links */

.nav-link{
  transition: 0.5s ease;
}

.nav-link:hover{
  color: #d21283;
}

.hamburger{
  display: block;
  cursor: pointer;
  overflow: hidden;
  position: fixed;
  top: 15px;
  right: 15px;
  background: rgba(150,150,150,0.5);
   width: 89px;
   height: 44px;
   padding: 6px 30px;
  z-index: 10;
		border-radius: 0.5em;
		border: solid 1px rgba(144, 144, 144, 0.25) !important;
}

.bar{
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #d21283;
 border-radius: 5px;
}

.nav-item{
  padding: 0 1.5rem;
}
