.navbar {
  background-color: #333;
  padding: 10px;
  text-align: center;
}

.nav-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: inline-flex;
}

.nav-item {
  position: relative;
  margin-right: 20px;
}

.nav-item a {
  color: white;
  text-decoration: none;
  padding: 10px;
}

.nav-item a:hover {
  background-color: #555;
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 90%;
  left: 0;
  transform: translate(-25%, -15px);
  background-color: #444;
  padding: 10px 0;
  display: none;
  min-width: 500px;
  z-index: 1000;
  text-align: center;
}

.dropdown-menu li {
  padding: 5px 20px;
}

.dropdown-menu li a {
  color: white;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #666;
}

.nav-item:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
}

/*# sourceMappingURL=navbar.css.map */