#social ul li{
  display: inline-block;
  /* padding: 20px; */
  margin-left: 10px;
  /* justify-content: center; */
}

#social ul li {
    list-style: none;
    /* margin: 0 10px; */
}
#social ul li .fa {
    color: #000000;
    font-size: 20px;
    line-height: 30px;
    transition: .5s;
}
#social ul li .fa:hover {
    color: white;
}
#social ul li a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ff9800;
    text-align: center;
    transition: 0.5s;
    transform: translate(0,0px);
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
}
#social ul li a:hover {
    transform: rotate(0deg) skew(0deg) translate(0, -10px);
}
#social ul li:nth-child(1) a:hover {
    background-color: #3b5999;
}
#social ul li:nth-child(2) a:hover {
    background-color: #55acee;
}
#social ul li:nth-child(3) a:hover {
    background-color: #f81cc1;
}
#social ul li:nth-child(4) a:hover {
    background-color: #cd201f;
}
#social ul li:nth-child(5) a:hover {
    background-color: #0077B5;
}
