
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #000, #333);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: rgba(0, 0, 0, 0.85);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
  width: 90%;
  max-width: 400px;
}

.profile {
  margin-bottom: 20px;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-bottom: 15px;
}

h1 {
  font-size: 26px;
  margin: 0;
}

p {
  font-size: 14px;
  color: #aaa;
  margin: 10px 0 20px;
}

.links .link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  background-color: #1a1a1a;
  padding: 12px 20px;
  margin: 10px 0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.links .link i {
  margin-right: 10px;
}

.links .link:hover {
  background-color: #444;
  transform: scale(1.05);
}
