.social-link{
    margin: 0;
    padding: 0;
    background: #262626;
  }
  
  .social-link ul {
    margin: 0;
    padding: 0;
    display: flex;
    position: absolute;
    top: 94%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .social-link ul li {
    list-style: none;
    margin: 0 15px;
  }
  
  .social-link ul li a {
    position: relative; 
    display: block;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 63px;
    background: #333;
    border-radius: 50%;
    font-size: 30px;
    color: #666;
    transition: .5s;
  }
  
  .social-link ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #de5e91;
    transition: .5s;
    transform: scale(.9);
    z-index: -1;
  }
  
  .social-link ul li a:hover::before {
    transform: scale(1.1);
    box-shadow: 0 0 15px #de5e91;
  }
  
  .social-link ul li a:hover {
    color: #de5e91;
    box-shadow: 0 0 5px #de5e91;
    text-shadow: 0 0 5px #de5e91;
  }