.btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px;
}

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

.menu-item {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 220px;
  padding: 15px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.menu-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
}

.menu-item h3 {
  margin: 10px 0 5px;
}

.menu-item button {
  background-color: #28a745;
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}