body {
  font-family: Arial, sans-serif;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 400px;
}

.profile-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.links a {
  display: block;
  text-decoration: none;
  background: #007bff;
  color: white;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.links a:hover {
  background: #0056b3;
}
