

.social-buttons a{
  display: inline-flex;
  text-decoration: none;
  font-size: 14px;
  width: 20px;
  height: 20px;
  color: #ffffff;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 2px;
}

.social-buttons a::before{
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  background: linear-gradient(45deg,#999999,#000000);
  border-radius: 50%;
  z-index: -1;
  transition: 0.3s ease-in;
}

.social-buttons a:hover::before{
  transform: scale(0);
}

.social-buttons a i{
  transition: 0.3s ease-in;
}

.social-buttons a:hover i{
  background: linear-gradient(45deg,#000000,#00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.2);
}
