body {
  font-family: 'Arial', sans-serif;
  background: #fffbe6;
  color: #333;
  text-align: center;
  padding: 2rem;
}

.container {
  max-width: 600px;
  margin: auto;
}

input {
  margin: 1rem;
  padding: 0.5rem;
  font-size: 1rem;
  width: 220px;
  text-transform: uppercase;
}

button {
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background-color: #ffd700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.hex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem auto;
}

.hex-row {
  display: flex;
  gap: 10px;
}
/* 
.hex-row.offset {
  margin-left: 45px;
} */

.hex {
  width: 80px;
  height: 92px;
  background: #e7e7e7;
  clip-path: polygon(
    50% 0%, 100% 25%,
    100% 75%, 50% 100%,
    0% 75%, 0% 25%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  user-select: none;
  transition: transform 0.2s;
}

.hex.center {
  background: #f7da21;
}

.hex:hover {
  transform: scale(1.1);
}

ul {
  list-style: none;
  padding: 0;
}
