@keyframes social {
    0% {
        transform: translate(0);
        transition: all .35s linear;
    }

    100% {
        transition: all .35s linear;
        transform: translate(80px, -50px);
    }
}

@keyframes digital {
    0% {
        transform: translate(0);
        transition: all .35s linear;
    }

    100% {
        transition: all .35s linear;
        transform: translate(-100px, -50px);
    }
}

@keyframes design {
    0% {
        transform: translate(0);
        transition: all .35s linear;
    }

    100% {
        transition: all .35s linear;
        transform: translate(270px, -120px);
    }
}

@keyframes ui {
    0% {
        transform: translate(0);
        transition: all .35s linear;
    }

    100% {
        transition: all .35s linear;
        transform: translate(175px, -155px);
    }
}

@keyframes mobile {
    0% {
        transform: translate(0);
        transition: all .35s linear;
    }

    100% {
        transition: all .35s linear;
        transform: translate(-270px, -120px);
    }
}

@keyframes development {
    0% {
        transform: translate(0);
        transition: all .35s linear;
    }

    100% {
        transition: all .35s linear;
        transform: translate(-175px, -155px);
    }
}
@keyframes web {
    0% {
        transform: scale(1);
        transition: all .35s linear;
    }

    100% {
        transition: all .35s linear;
        transform: scale(1.1);
    }
}