.list-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.2rem;
  margin-bottom: 5rem;
}

.list-social__item .icon {
  max-height: 3rem;
  width: 3rem;
  transition: transform .3s ease;
}

.list-social__link {
  align-items: center;
  display: flex;
  padding-right: 1rem;
  color: rgb(var(--color-foreground));
}

.list-social__link:hover .icon {
  transform: scale(1.07);
}