/* CSS Document */
.parallax {
    background: #5c2af0;
    height: 500px;
    /* fallback for older browsers */
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-perspective: 300px;
    perspective: 300px;
	margin: 0 auto;
}
.parallax__group {
    position: relative;
    height: 500px;
    /* fallback for older browsers */
    height: 300vh;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.parallax__layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.parallax__layer--fore {
	background: url(img/ball2.png) no-repeat center;
	background-size: 400px 400px;
    -webkit-transform: translateZ(90px);
    transform: translateZ(90px);
    z-index: 5;
}
.parallax__layer--base {
	background: url(img/ball3.png) no-repeat center;
	background-size: 400px 400px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 4;
}
.parallax__layer--back {
	background: url(img/ball4.png) no-repeat center;
	background-size: 400px 400px;
    -webkit-transform: translateZ(-300px) scale(0.8);
    transform: translateZ(-300px) scale(0.8);
    z-index: 3;
}
.parallax__layer--deep {
	background: url(img/ball1.png) no-repeat center;
	background-size: 400px 400px;
    -webkit-transform: translateZ(-600px) scale(0.5);
    transform: translateZ(-600px) scale(0.5);
    z-index: 2;
}
.right {
    background-position: right;
}
.left {
    background-position: left;
}
.title {
	position: absolute;
    top: 50px;
    left: 50px;
    width: 100%;
	z-index:1000;
	color: #fff;
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}
