@import url('https://fonts.googleapis.com/css?family=Charmonman|K2D');


*{
  text-align: center;
  cursor:url(http://www.javascriptkit.com/dhtmltutors/cursor-hand.gif), auto;
  margin: auto;
}

body{
  padding: 5px;
  background-color: pink;
  color:hotpink;
  font-family: 'Charmonman', cursive;

  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,0.15),rgba(255,255,255,0.15) 5px, transparent 25px,transparent 25px),

  repeating-linear-gradient(45deg, rgba(255,255,255,0.15),rgba(255,255,255,0.15) 7px,transparent 25px,transparent 25px),

  linear-gradient(to bottom, pink, red);
}

h1{
  font-size: 60px;
  background: -webkit-linear-gradient(#eee, #333);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;

 text-shadow: 4px 4px 10px lightcoral;
}

h1:hover{
  animation: blinker 2s linear infinite alternate-reverse;
}

nav{
  font-size: 30px;
  background: -webkit-linear-gradient(#333, #eee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 4px 4px 10px lightcoral;
  animation: blinker 8s linear infinite alternate-reverse;
}

nav:hover{
  animation: blinker 1s linear infinite alternate-reverse;
}

@keyframes blinker {
  50% {
    opacity: 0;

    background: -webkit-linear-gradient(yellow, lightcoral);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
  }
}

h3{
  font-size: 25px;
  padding: 80px;
  background: -webkit-linear-gradient(red, pink);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}

#jump:hover{
  animation: jumper 5s linear infinite alternate-reverse;
}

@keyframes jumper {
  0% {
    filter: blur(1px);
  }
  100% {
    filter: blur(0px);
  }
}

#top{
  position: absolute;
  top: 700px;
  left: 27%;
  z-index: 3;

  animation: zoom 8s ease-in-out infinite alternate-reverse;
}

#top:hover{
  transform: scale(1.8) translateY(100px);
  animation: desaturater 3s linear infinite alternate-reverse;
}

@keyframes zoom {
    0% {
      transform: scale(.7);
      filter: invert(0%);
    }

    50% {
    filter: invert(100%);
    }

    100% {
    transform: scale(1.5) translateY(100px);
    filter: invert(0%);
    }
}

@keyframes desaturater {
  100% {
    filter: saturate(0%);
  }
}

#background{
  position: absolute;
  top: 550px;
  left: 100px;
  filter: blur(2px);
  z-index: -1;

  animation-name: blury;
  animation-duration: 8000ms;
  animation-direction:alternate-reverse;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}


@keyframes blury{
    0% {
        /* transform: rotate(0deg); */
      border-radius: 20%;
      filter: blur(0px) opacity(100%);
    }
    33% {
        /* transform: rotate(180deg); */
      filter: blur(2px) opacity(40%);
      border-radius: 40%;
    }
    66% {
      filter: blur(4px) opacity(50%);
      border-radius: 60%;
    }
    100% {
      filter: blur(0px) opacity(100%);
      border-radius: 80%;;
    }
}

#frame{
  position: absolute;
  top: 350px;
  left: 5%;
  z-index: 2;

  transition: all 4s linear;
}

#frame:hover{
  animation: desaturater .5s linear infinite alternate-reverse;
  transform: scale(.8);
}


#border{
  align-items: center;
  border: dotted 5px pink;

  transition: all 5s linear;
}

#border:hover{
  transform: perspective(300px) rotateY(30deg) rotateX(60deg);
  filter: opacity(0%);
}


#plush{
  position: relative;
  top: -300px;
}

#plush:hover{
  animation: zoom 4s linear infinite alternate-reverse;
}


[id^="layer-"]{
  margin-top: 300px;
  position: absolute;
  top: 50px;
  left:30%;
}

[id^="layer-"]:hover{
  animation: desaturater .2s linear infinite alternate-reverse;
}

#layer-1{
  left:50%;
  z-index: 3;
}

#layer-2{
  left: 10%;
  top: 0;
  z-index: 1;
}

#layer-3{
  left:20%;
  top:300px;
  z-index: -3;
}

#layer-4{
  left:30%;
  z-index: 2;
}

#layer-5{
  left:48%;
  top: 250px;
  z-index: -4;
}

#title{

  margin-top: 1700px;
  font-size: 40px;
  text-shadow: 2px 2px 4px red;

  color:red;
}

#touch{
  position: absolute;
  top: 700px;
  left: 47%;
  z-index: 5;

  color: pink;
  font-size: 60px;
  text-shadow: 2px 2px 4px red;
  transition: all 4s linear;

}

#layer-4:hover ~ #touch{
  color: red;
  transform: rotate(360deg);

}

@keyframes appear {
  0%{
    filter:opacity(0%);
  }

  100%{
    filter:opacity(100%);
  }
}
