.social-cards-table {
    display: flex;
    height: 100px;
    width: 100%;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    margin-top: 50px;
}

.social-btn, .social-btn:before, .social-btn i {
    transition: all 0.35s, border 0s;
}

.social-btn:before {
    top: 90%;
    left: -110%;
    background-color: var(--btn-color);
}

.social-btn i {
    transform: scale(0.9);
    color: var(--btn-color);
    font-size: 38px;
}

.social-btn:hover:before {
    top: -10%;
    left: -10%;
}

.social-btn:hover i {
    color: #fff;
    transform: scale(1.05);
}

.social-btn {
    display: inline-block;
    background-color: #fff;
    width: 90px;
    height: 90px;
    line-height: 90px;
    margin: 0 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 30%;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    background-color: transparent;
    box-shadow: 0 0 5px 1px var(--btn-color);
    filter: brightness(1.1);
    transform: scale(1.2);
}

.social-btn:before {
    content: '';
    width: 120%;
    height: 120%;
    position: absolute;
    transform: rotate(45deg);
}

.flexbox-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.social-btn:hover::after {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgb(255, 255, 211);
    animation: sheen 2.25s ease-in-out infinite;
}

body.lightmode .social-cards-table .social-card .social-btn {
    border: 2px solid grey;
}

@keyframes sheen {
    0% { transform: scale(0) rotate(45deg); opacity: .1; }
    50% { transform: scale(0) rotate(45deg); opacity: 0.2; }
    51% { transform: scale(4) rotate(45deg); opacity: 0.5; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}