.navbar {
  background-color: blue;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 10px;
  height: 55px;
  position: fixed;
  width: 100%;
}
.navbar .left {
  display: flex;
  justify-content: center;
  align-items: center;
}


.logo{
  width: 50px;
  height: 50;
  border-radius: 50%;
 
}


.navbar .right {
  width: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 30px;
}
.navbar .right a {
  text-decoration: none;
  color: white;
}
.navbar .right a:hover {
  text-decoration: underline;
  color: cyan;
}

.navbar .right img {
  width: 24px;
  height: 24px;
}

.bar1,
.bar2,
.bar3 {
  background-color: White;
  height: 4px;
  width: 36px;
  margin: 3px;
  border-radius: 10px;
}

.navbar .hamburger {
  display: none;
}

.navbar .hamburger:hover {
  cursor: pointer;
}

.mobileNav {
  width: 75px;
  background-color: var(--text-grey);
  
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  position: fixed;
  z-index: 2;
  top: 0;
  right: -160px;
  padding: 16px;
  transition: transform 0.3s;
}
.mobileNav img {
  width: 24px;
  height: 24px;
}

.openDrawer {
  transform: translateX(-160px);
}

.mobileNav a {
  text-decoration: none;
  color: white;
  margin: 16px 0;
}
.mobileNav a:hover {
  text-decoration: underline;
}
