* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  margin: 0 auto;
  padding: 2rem;
  background: 
    linear-gradient(rgba(250, 249, 245, 0.82), rgba(250, 249, 245, 0.55)),
    url('/images/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1 {
  font-family: ui-serif, serif;
  margin-bottom: 1rem;
}

.profile-header {
  text-align: center;
  margin-bottom: 1rem;
}

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

.pronouns {
  font-size: 0.9rem;
  color: #666;
  font-weight: normal;
}

.about {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e0e0e0;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.social-links h2 {
  margin-bottom: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 6px;
}

.social-link svg {
  flex-shrink: 0;
  color: #0066cc;
}

.social-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.social-label {
  font-size: 0.8rem;
  color: #999;
  font-weight: 500;
}

.social-value {
  font-size: 0.95rem;
  color: #333;
}
.social-value a {
  text-decoration: none;
  color: black;
}
.social-value a:hover {
  text-decoration: underline;
  color: #0066cc;
}

.footer {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 1.5rem 0;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

.footer p {
  margin: 0.25rem 0;
}

.footer a {
  color: #0066cc;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}