body {
    background: white;
}



.container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    height: 100vh;
    overflow: hidden;
    /* background: red; */
}

#left-hand, #right-hand {
    width: 100%;
    height: 100vh;
    background-size: 65%;
    background-repeat: no-repeat;
    position: absolute;

    /* border: 1px solid white; */
}

#left-hand {
    background-image: url('../img/left-hand.svg');
    left: 55%;
    transform: translateX(-100%);
    background-position: top right;
}

#right-hand {
    background-image: url('../img/right-hand.svg');
    right: 55%;
    transform: translateX(100%);
}





/* Animations */


/* Keyframes */
/* The animation code */
@keyframes slideRightHalf {
    0% {left: 0;}
    49% {left: 54%;}
    50% {left: 54%; }
    51% {left: 54%; }
    100% {left: 0;}
}

@keyframes slideLeftHalf {
    0% {right: 0;}
    49% {right: 54%;}
    50% {right: 54%;}
    51% {right: 54%;}
    100% {right: 0;}
}

.slide-right {
    animation-name: slideRightHalf;
    animation-duration: 3s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    
}

.slide-left {
    animation-name: slideLeftHalf;
    animation-duration: 3s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}


@keyframes fadeInText {
    0% {opacity: 0; transform: scale(0.5);}
    49% {opacity: 54%; transform: scale(1.1);}
    50% {opacity: 54%; transform: scale(1);}
    51% {opacity: 54%; transform: scale(1.1);}
    100% {opacity: 0; transform: scale(0.5);}
}

#fade-in-text {
    z-index: 100000;
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100vh;
    color: red;
    text-align: center;
    opacity: 1;
    transform: scale(1);
    animation-name: fadeInText;
    animation-duration: 3s;
    animation-timing-function: ease;
    animation-iteration-count: 2;
}


#fade-in-text h1 {
    color: red;
    text-align: center;
    opacity: 1;
    transform: scale(1);
    animation-name: fadeInText;
    animation-duration: 3s;
    animation-timing-function: ease;
    animation-iteration-count: 2;
}