body {
  background: linear-gradient(135deg, #cba6f7, #f5a8e2);
  font-family: "Inter", sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-family: "Poppins", sans-serif;
  color: white;
  margin-bottom: 2rem;
}

.card-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  width: 200px;
  color: white;
  text-decoration: none;
  transition:
    transform 0.2s,
    background 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
  border: 2px solid white;
}

.name {
  font-family: "Poppins", sans-serif;
  margin: 0;
}
