.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
}

.menu-item {
  text-align: center;
  transition: transform 0.2s ease;
}

.menu-item:hover {
  transform: scale(1.05);
}

.menu-item img {
  width: 150px;
  height: 150px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-item p {
  margin: 10px 0;
  font-size: 16px;
  margin-bottom: 100px;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

#popup-image {
  max-width: 200px; /* Adjust the width as needed */
  max-height: 200px; /* Adjust the height as needed */
  padding-right: 10px;
}
