*,
*:before,
*:after {
    box-sizing: border-box;
    outline: none;
}


/* html {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    font-smooth: auto;
    font-weight: 300;
    line-height: 1.5;
    color: #444;
} */


/* body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: #bdc3c7;
} */

.hover {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0 140px;
    height: 90px;
    background-color: #4DB6AC;
    border-radius: 99px;
    box-shadow: 0 1px 3px #0000001f, 0 1px 2px #0000003d;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.hover:before,
.hover:after {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    width: 50%;
    height: 100%;
    transition: 0.25s linear;
    z-index: 1;
}

.hover:before {
    content: "";
    left: 0;
    justify-content: flex-end;
    background-color: #4765d1;
}

.hover:after {
    content: "";
    right: 0;
    justify-content: flex-start;
    background-color: #3651b3;
}

.hover:hover {
    background-color: #41bdad;
    box-shadow: 0 14px 28px #00000040, 0 10px 10px #00000038;
}

.hover:hover span {
    opacity: 0;
    z-index: -3;
}

.hover:hover:before {
    opacity: 0.5;
    transform: translateY(-100%);
}

.hover:hover:after {
    opacity: 0.5;
    transform: translateY(100%);
}

.hover span {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: whitesmoke;
    font-family: "Fira Mono", monospace;
    font-size: 0 20px;
    font-weight: 700;
    opacity: 1;
    transition: opacity 0.25s;
    z-index: 2;
}

.hover .social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    height: 100%;
    color: whitesmoke;
    font-size: 28px;
    text-decoration: none;
    transition: 0.25s;
}

.hover .social-link i {
    text-shadow: 1px 1px #46627fb3;
    transform: scale(1);
}

.hover .social-link:hover {
    background-color: #f5f5f51a;
}

.hover .social-link:hover i {
    animation: bounce 0.4s linear;
}

@keyframes bounce {
    40% {
        transform: scale(1.4);
    }
    60% {
        transform: scale(0.8);
    }
    80% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}