body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ffe6f0, #e6f0ff);
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.container {
  text-align: center;
}
.card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(255, 182, 193, 0.5);
  backdrop-filter: blur(10px);
  width: 300px;
  margin: auto;
}
.pfp {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 0 10px rgba(173, 216, 230, 0.7);
}
.btn {
  background: white;
  color: #6b5bff;
  padding: 0.8rem 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(173, 216, 230, 0.6);
  transition: all 0.2s ease;
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 182, 193, 0.8);
}
.home-buttons {
  margin-top: 2rem;
}