.menu-container {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
}

.menu-item {
  position: relative;
}

.menu-link {
  display: block;
  padding: 14px 20px;
  color: black;
  font-weight: bold;
  text-decoration: none;
  background-color: #cc9900;
  border-radius: 10px;
  border-right: 2px solid #fff;
}

.menu-link:hover {
  background-color: #cccc00;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #cccc00;
  border-radius: 10px;
  min-width: 160px;
  z-index: 1;
  flex-direction: column;
}

.submenu a {
  padding: 12px 16px;
  color: black;
   font-weight: bold;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #555;
}

.submenu a:hover {
  background-color: #cccc99;
}

.menu-item:hover .submenu {
  display: flex;
}
