.hands {
    z-index: 0;
    position: relative;
}

.left-hand {
    position: absolute;
    right: calc(50% - 310px);
    top: -22rem;
    height: auto;
    animation: welcome-left 1.5s 1 ease-in-out;
}

.right-hand {
    position: absolute;
    right: calc(50% - 975px);
    top: -6rem;
    height: auto;
    animation: welcome-right 1.5s 1 ease-in-out;
}


@keyframes welcome-right {
    from {
        transform: translateY(24rem) translateX(24rem);
    }
}

@keyframes welcome-left {
    from {
        transform: translateY(-24rem) translateX(-24rem);
    }
}

@media screen and (max-width: 900px) {
    .left-hand {
        right: 50%;
        top: -34rem;
    }
    
    .right-hand {
        right: 0;
        left: 50%;
        top: -18rem;
    }
}

@media only screen and (max-width: 756px) {
    .right-hand {
        left: 50%;
    }

    .left-hand {
        right: calc(50% - 1rem);
    }
}