body {
  margin: 0;
  background: linear-gradient(135deg, #74ebd5, #9face6);
  font-family: "Poppins", sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 40px 20px;
}

.card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 100%;
  padding: 25px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: url("https://i.pravatar.cc/150") center/cover;
  margin: 0 auto 15px;
  border: 4px solid #9face6;
}

h1,
h2 {
  margin: 10px 0;
  color: #333;
}

p,
li {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

ul {
  list-style: none;
  padding: 0;
}

li::before {
  content: "⭐ ";
  color: #9face6;
}
