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

:root {
  --bg-color: #171717;
  --text-main: #E5E5E5;
  --text-bio: #D4D4D8;
  --text-muted: #A1A1AA;
  --text-dim: #71717A;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  display: flex;
  justify-content: center;
  padding: 72px 24px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 440px;
  animation: fadeIn 3000ms cubic-bezier(0.4, 1, 0.3, 1) forwards;
}

header {
  margin-bottom: 45px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  cursor: default;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background: #27272A;
  object-fit: cover;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-header:hover .avatar {
  transform: scale(1.15);
}

.profile-info h1 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.profile-info a {
  text-decoration: none;
}

.profile-info p {
  font-size: 16px;
  color: var(--text-muted);
}

.bio {
  font-size: 13.5px;
  color: var(--text-bio);
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: -0.1px;
}

.btn-contact {
  display: inline-block;
  background: #FFFFFF;
  color: #000000;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 300ms ease;
}

.btn-contact:hover {
  opacity: 0.7;
}

h2 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--text-main);
}

.socials-list {
  font-size: 13px;
  margin-bottom: 48px;
}

.socials-list a {
  color: var(--text-main);
  text-decoration: none;
}

.socials-list a:hover {
  text-decoration: underline;
}

.slash {
  color: var(--text-dim);
  margin: 0 7px;
}

footer {
  font-size: 12px;
  color: #A1A1A1;
  line-height: 1.6;
}