.intro {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}

.profile-pic {
  width: 200px;
  height: auto;
}

.intro-text {
  flex: 1;
  min-width: 250px;
}

.label {
  background-color: #ff6a00;
  color: #000;
  padding: 0.3rem 0.8rem;
  font-weight: bold;
  border-radius: 4px;
}

.project-icon {
  width: 32px;
  height: auto;
}

.contacts {
  text-align: center;
  margin: 4rem 0;
}

.contacts h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-icons a img {
  width: 50px;
  height: 50px;
  transition: transform 0.2s ease;
}

.contact-icons a:hover img {
  transform: scale(1.15);
}

.site-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-title h1 {
  margin: 0;
  font-size: 2rem;
}

.site-title .subtitle {
  font-size: 1rem;
  color: #aaa;
  margin-top: 0.25rem;
}
