.navbar {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 90%;

}

.navbar-logo {
  color: #fff;
  justify-self: start;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  margin-left: 24px;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
  margin-right: -22px;
}

.nav-item {
  height: 80px;
}

.nav-links {
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  height: 100%;
  cursor: pointer;
  background-color: transparent;
  border: transparent;
}

.navbar-logo img {
  max-width: 100px;
  height: auto;
  max-height: 50px;
  width: auto;
}

.nav-links:hover {
  border-bottom: 2px solid #fff;
}

.mobile-menu {
  display: none;
}

@media screen and (max-width: 960px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .nav-item {
    width: 100%;
  }

  .nav-links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  .nav-links:hover {
    border: none;
  }
}