#tuerca1{
    transform: translateY(-3%);
    animation: moveTuerca 2s .5s alternate 5 both;
}
#tuerca2{
    transform: translateY(-3%);
    animation: moveTuerca 2s .5s alternate 5 both;    
}
#db1{
    transform: translateY(-3%);
    animation: moveTuerca 2s .5s alternate 5 both;    
}
#db2{
    transform: translateY(-3%);
    animation: moveTuerca 2s .5s alternate 5 both;    
}
#chicoNube{
    transform: translateY(-2%);
    animation: moveTuerca 2s .5s alternate 5 both;    
}
#muroGrande{
    transform:translateX(50%);
    animation: moveMuro 2s .8s  both;
}
#muroChiquito{
    transform:translateX(50%);
    animation: moveMuro 2s 1s  both;
}
#mnsj-1{
    transform: translateX(-50%);
    animation: moveMuro 2s .8s both ;
}
#mnsj-2{
    transform: translateX(-50%);
    animation: moveMuro 2s 1s both ;
}
#brazoGirl{
    transform-origin: 0% 0%;
    transform-box: fill-box;
    transform: rotate(25deg);
    animation: movebrazo 2s 1s alternate 5 both;
}
#btnCheck{
    transform: translateY(-2%);
    animation: moveCheck 2s .5s alternate 5 both;
}
#candado{
    transform: translateY(-50%);
    animation:moveCandado 2s .5s both;
}
@keyframes moveCandado {
    100%{
        transform: translateY(0%);
    }
}
@keyframes moveCheck {
    100%{
        transform: translateY(0);
    }
}

@keyframes movebrazo {
    100%{
        transform: unset;
    }
}

@keyframes moveMuro {
    100%{
        transform: unset;
    }
}

@keyframes moveTuerca {
    100%{
        transform: unset
   }
}