body {
    background: #3cb464;
/*    overflow: hidden;*/
}

body h1, body h2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: sans-serif;
    /*text-transform: uppercase;*/
/*    letter-spacing: 1px;*/
}

body h1 {
    top: 24px;
    color: white;
    font-size: 20px;
}

body h2 {
    top: 54px;
    color: white;
    font-size: 10px;
    opacity: 0.7;
}

.container {
    position: absolute;
    width: 800px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-perspective: 800px;
    ms-perspective: 800px;
    -o-perspective: 800px;
    perspective: 800px;
}

.container div, .container span {
    position: absolute;
}

.item {
    width: 100px;
    height: 100px;
    bottom: 70px;
    left: 50%;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

#stage {
    z-index: 10;
}

#jerry {
    z-index: 20;
}

#orange {
    z-index: 30;
}

#blue {
    z-index: 40;
}

#pink {
    z-index: 50;
}