:root {
  --accent-color: #3B82F6;
  --font-family: 'Sora', sans-serif;
  --text-color: #333;
  --bg-color: #fff;
}

body {
  margin: 0;
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.profile-pic {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

h1 {
  margin: 0.2rem 0;
  font-size: 2rem;
}

h2 {
  margin: 0.2rem 0 1rem;
  font-weight: 400;
  color: #555;
}

.about {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.link-item:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}
