body {
  font-family: "Comic Sans MS", cursive, sans-serif;
  background: linear-gradient(to right, #fdfbfb, #ebedee);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  margin: 20px 0;
  font-size: 2em;
  color: #333;
}

.number-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 1000px;
  padding: 10px;
}

.number-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 120px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.number-card:hover {
  transform: scale(1.1);
  background-color: #f0f8ff;
}

.number-value {
  font-size: 2em;
  font-weight: bold;
  color: #333;
}

.number-word {
  font-size: 1em;
  color: #666;
  margin-top: 5px;
}

.emoji {
  font-size: 1.5em;
  margin-top: 5px;
}

@media (max-width: 600px) {
  .number-card {
    width: 90px;
    height: 120px;
  }

  .number-value {
    font-size: 1.5em;
  }

  .emoji {
    font-size: 1.2em;
  }
}
