.social-links {
  gap: 12px;
  display: flex;
  justify-content: center;
}


.social-links li {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  gap: 10px;
  border-radius: 360px;
}

.social-links li:hover {
  background: var(--black);
  padding: 8px;
  transition: all 0.5s ease;
}

.social-links li:hover svg path {
  fill: var(--white);
}