body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: #f7f7f7;
  margin: 0;
  padding: 15px;
}
h1 {
  color: #333;
  font-size: 1.5em;
}
p {
  font-size: 1.1em;
  margin-bottom: 20px;
}
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0 20px 0;
}
.card {
  background: white;
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 15px;
  margin: 10px;
  min-width: 120px;
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}
.emoji {
  font-size: 2.5em; /* большая картинка */
  margin-bottom: 8px;
}
.word {
  font-size: 1.2em;
  font-weight: bold;
}
button {
  padding: 15px 30px;
  font-size: 1.2em;
  border: none;
  border-radius: 8px;
  background: #4CAF50;
  color: white;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
button:hover {
  background: #45a049;
}