.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
    box-shadow: 0px 0px 15px #00000027;
    padding: 15px 10px;
    border-radius: 5em;
}
.social-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 10px;
    background-color: #fff;
    box-shadow: 0px 0px 4px #00000027;
    transition: 0.3s;
}
.social-button:hover {
    background-color: #f2f2f2;
    box-shadow: 0px 0px 6px 3px #00000027;
}
.social-buttons svg {
    transition: 0.3s;
    height: 20px;
}
.facebook {
    background-color: #005A3A;
}
.facebook svg {
    fill: #f2f2f2;
}
.facebook:hover svg {
    fill: #005A3A;
}

.linkedin {
    background-color: #005a3bb2;
}
.linkedin svg {
    fill: #f2f2f2;
}
.linkedin:hover svg {
    fill: #005a3bb2!important;
}
.instagram {
    background-color: #005a3be7;
}
.instagram svg {
    fill: #f2f2f2;
}
.instagram:hover svg {
    fill: #005a3be7;
}
