
body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  color: #a83232;
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border: 3px solid #a83232;
}

h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
}

.subtitle {
  font-size: 0.75rem;
  margin-top: 0.7rem;
  max-width: 320px;
  line-height: 1.5;
  text-align: center;
}

.socials {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-top: 1.6rem;
}

.socials a {
  color: #a83232;
  transition: color 0.3s ease;
  text-decoration: none;
}

.socials a:hover {
  color: #d14c4c;
}
