.social ul {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    display: flex;
}
.social ul li {
    list-style: none;
    margin: 0 5px;
}
.social ul li .fa {
    color: black;
    font-size: 16px;
    line-height: 30px;
    transition: .5s;
}
.social ul li .fa:hover {
    color: black;
}
.social ul li a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ffffff;
    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;
}
