
.honeycomb-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.honey-row {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hex {
  width: 120px;
  height: 120px;
  background-color: #333;
  color: white;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  text-align: center;
  padding: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}
.hex:hover {
  transform: scale(1.05);
}
.icon-img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}
