.share-links {
    display: flex;
}

.share-links li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    background: #f8f8f8;
    margin-right: 10px;
    color: #000000;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.share-links li a:hover {
    background: #7d3c92;
    color: #ffffff;
}