@charset "UTF-8";
/* CSS Document */
/* 2014 glitch art design by Glitchgirl - Jade.. yea that's me :)*/
/* Thanks for cool css code and great information to be able to learn from..i<3css :) 
Pure CSS parallax scroll demo #3 by Keith Clarke
www.keithclark.co.uk/articles/pure-css-parallax-websites/ */


  /* Parallax base styles
  --------------------------------------------- */

  .parallax {
    height: 500px; /* fallback for older browsers */
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-perspective: 300px;
    perspective: 300px;
  }

  .parallax__group {
    position: relative;
    height: 500px; /* fallback for older browsers */
    height: 100vh;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  .parallax__layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .parallax__layer--fore {
    -webkit-transform: translateZ(90px) scale(.7);
    transform: translateZ(90px) scale(.7);
    z-index: 1;
  }

  .parallax__layer--base {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 4;
  }

  .parallax__layer--back {
    -webkit-transform: translateZ(-300px) scale(2);
    transform: translateZ(-300px) scale(2);
    z-index: 3;
  }

  .parallax__layer--deep {
    -webkit-transform: translateZ(-600px) scale(3);
    transform: translateZ(-600px) scale(3);
    z-index: 2;
  }


  /* Debugger styles 
  --------------------------------------------- */

.debug-on .parallax__group {
    -webkit-transform: translate3d(800px, 0, -800px) rotateY(30deg);
    transform: translate3d(700px, 0, -800px) rotateY(30deg);
 }
 .debug-on .parallax__layer {
    box-shadow: 0 0 0 2px #000;
    opacity: 0.9;
  }
  .parallax__group {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
  }


  /* page styles
  --------------------------------------------- */

  body, html {
    overflow: hidden;
  }

  body {
    font: 100% / 1 Arial;
	color:#000;
  }

  * {
    margin:0;
    padding:0;
  }

  .parallax {
    font-size: 175%;
  }

   /* centre the content in the parallax layers */
  .title {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }



  /* ROY.G.BIV <('~')>
  --------------------------------------------- */

  #group1 {
    z-index: 5; /* RED */
  }
  #group1 .parallax__layer--base {
	  background:#FF3300;
	
  }

  #group2 {
    z-index: 3; /* ORANGE */
  }
  #group2 .parallax__layer--back {
    background:#ff9900;
	color:#FF0;
  }

  #group3 {
    z-index: 4; /* YELLOW */
  }
  #group3 .parallax__layer--base {
    background:#ffff00;
	
	color:#3C0;
  }

  #group4 {
    z-index: 2; /* GREEN */
  }
  #group4 .parallax__layer--deep {
    background:#66cc00;
	color:#F00;
  }

  #group5 {
    z-index: 3; /* BLUE  */
  font-size:smaller;
  }
  #group5 .parallax__layer--base {
    background:#00ffff;
	
	color:#60F;
  }

  #group6 {
    z-index: 2; /* INDIGO */
  }
  #group6 .parallax__layer--back {
    background: #0000ff;
	color:#39F;
	font-size:smaller;
  }

  #group7 {
    z-index: 3; /* VIOLET */
  }
  #group7 .parallax__layer--base {
    background: #9900ff;
	background-image:url(images/molly2.gif);
	color:#000;
	

  }


  /* misc 
  --------------------------------------------- */
  .footer {
    position: absolute;
    z-index:100;
    bottom: 1vh;
    top: auto;
    font-size:75%;
    text-align:center;
    width: 100%;
  }

