body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #313131, #000000);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid white;
}

.name {
  font-size: 2.5rem;
  margin: 0.5rem 0;
  letter-spacing: 3px;
}

.subtitle {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.buttons a {
  border: 1px solid white;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  margin: 0.3rem;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.buttons a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.socials {
  margin-top: 2rem;
}

.socials a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  transition: transform 0.3s;
}

.socials a:hover {
  transform: scale(1.2);
}