h1 {
  font-family: Arial, sans-serif !important;
}

h2 {
  font-family: Arial, sans-serif !important;
  text-align: center;
}

.alphabet-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
  justify-content: center;
}

.alphabet-links a {
  display: inline-block;
  font-size: 28px; /* plus grand pour téléphone */
  font-family: Arial, sans-serif;
  padding: 14px 18px;
  background-color: #ffc0cb; /* rose clair par défaut */
  border-radius: 6px;
  text-decoration: none;
  color: #000080;
  border: 1px solid #ccc;
  text-align: center;
  min-width: 48px;
  transition: all 0.2s ease-in-out; /* animation douce */
}

.alphabet-links a:hover,
.alphabet-links a:focus {
  background-color: #ff7790; /* rose plus foncé au survol */
  transform: scale(1.1); /* agrandissement au survol */
}

@media (max-width: 600px) {
  .alphabet-links a {
    font-size: 26px;
    padding: 16px;
    flex: 1 1 20%;
  }
}