body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #d9a7c7, #fffcdc);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  width: 300px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #ff6f61;
}

.card h2 {
  margin: 10px 0 5px;
  font-size: 22px;
  color: #333;
}

.card p {
  margin: 5px 0;
  color: #666;
  font-size: 14px;
}

button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #ff6f61;
  border: none;
  border-radius: 25px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #e85c50;
}
