body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  color: #222;
}

header {
  padding: 2rem;
  text-align: center;
  font-size: 1.5rem;
}

.buttons a {
  background: #ffc1cc;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border-radius: 10px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.amis-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.ami-card {
  width: 150px;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: center;
}

.ami-card:hover {
  transform: scale(1.1);
}

.ami-card img {
  width: 100%;
  border-radius: 15px;
}
