#socials {
  text-align: center;
  margin: 40px 0;
}

#socials h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-link img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover img {
  transform: scale(1.2);
  opacity: 0.8;
}

