.link{
    display: flex;
    justify-content: center;
}
.interact{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 170px;
    height: 50px;
    background: #03C4EB;
    border-radius: 40px;
    color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    cursor: pointer;
    transition: .7s ease-in-out;
}

.interact:hover {
    background: #28b1d6; /* Cambio de color al pasar el cursor */
    transform: scale(1.05); /* Aumento del tamaño al pasar el cursor */
}

.interact.active{
    font-size: 0;
    width: 50px;
    background: #ededed;
}

.interact i {
    margin-right: 7px;
}

