/* style.css_mau nen #40E0D0 */
body {
  font-family: sans-serif;
  text-align: center;
  background-color: #20B2AA;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 6vw; /* Tự động co giãn theo màn hình */
  margin: 20px 0;
  color: #333;
}

.alphabet {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 10px;
}

button {
  font-size: 10vw; /* 👈 chữ cái to trên điện thoại */
  padding: 4vw 6vw;
  border-radius: 10px;
  border: none;
  background-color: #ff9800;
  color: white;
  cursor: pointer;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

button:hover {
  background-color: #f57c00;
  transform: scale(1.05);
}

/* 📱 Tối ưu cho màn hình nhỏ */
@media (max-width: 480px) {
  .alphabet {
    gap: 8px;
  }

  button {
    font-size: 12vw;
    padding: 5vw 7vw;
  }
}