.floating-btn{
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* transform: translate(-290px, 0); */
    transform: translate(-250px, 0);
  }
  
  .floating-btn a{
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin: 5px;
    padding: 20px;
    width: 300px;
    text-align: right;
    border-radius: 50px;
    transition: 1s;
    transition-property: transform;
  }
  
  .floating-btn a:hover{
    transform: translate(100px, 0);
  }
  .floating-btn a:active{
    transform: translate(100px, 0);
  }
  
  .floating-btn i{
    margin-left: 10px;
    font-size: 30px;
    width: 30px;
    height: 30px;
  }
  
  .floating-btn a:nth-child(1) i{
    color: #1DA0F0;
  }
  
  .floating-btn a:nth-child(2) i{
    color: #F80000;
  }
  
  .floating-btn a:nth-child(3) i{
    color: transparent;
    background-image: linear-gradient(45deg, #FFDF9E, #E56969, #8A49A1);
    /* -webkit-background-clip: text; */
    /* -webkit-background-clip: ; */
    font-weight: 600;
  }
  
  .floating-btn a:nth-child(4) i{
    color: #4ECCE8;
  }