.social-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #007bff;
  border-radius: 25%;
  width: 50px;
  height: 50px;
}

.social-link-icon {
  position: relative;
  display: flex;
  line-height: 24px;
  font-weight: 600;
  font-size: 1.6em;
  z-index: 2;
}

.social-link:hover {
  text-decoration: none;
}

.social-link-effect {
  transform: skewY(45deg) translate(-50%, -50%);
  background-color: #007bff;
  height: inherit;
  width: inherit;
  position: absolute;
  z-index: 1;
  border-radius: 25%;
  opacity: 0;
}

.social-link:hover > .social-link-effect {
  transform: translate(0, 0);
  opacity: 1;
  transition: 0.5s all;
}

.social-link:hover {
  color: white;
  transition: 0.5s all;
}

