/*class to add for next page blink*/
.nextPageBlink
{
	animation-duration: 1s;
  animation-name: nextPage;
  animation-iteration-count: infinite;
}

@keyframes nextPage {
  0% {
    opacity: 0;
    color:yellow;
  }

  25% {
   opacity: 0.3;
   color:green;
  }

  50% {
   opacity: 0.7;
   color:blue;
  }

   75% {
   opacity: 1;
   color:brown;
  }

   100% {
   opacity: 0.5;
   color:black;
  }
}


/*class to be added for the blinkEffect*/
.blinkEffect
{
  animation-duration: 1s;
  animation-name: blink;
  animation-iteration-count: infinite;
}

@keyframes blink {
  from {
    opacity: 0;
  }

  to {
   opacity: 1;
  }
}

/*animation for sun rotation */
.sunRotate
{
  animation-duration: 7s;
  animation-name: sunRound;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  -webkit-animation-duration: 7s;
  -webkit-animation-name: sunRound;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@keyframes sunRound{
  0%{
     transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }


  100%{
      transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
  }
}

@-webkit-keyframes sunRound{
  0%{
      transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);

   
  }


  100%{
       transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);

  }
}

/*animation for scaling the stalk and flower bud*/

.makeBig
{
  animation-duration: 7s;
  animation-name: bigIt;
   animation-fill-mode:forwards;
  animation-timing-function: easeIn;
  animation-iteration-count: 1;

  -webkit-animation-duration: 7s;
  -webkit-animation-name: bigIt;
  -webkit-animation-fill-mode:forwards;
  -webkit-animation-timing-function: easeIn;
  -webkit-animation-iteration-count: 1;
}

@keyframes bigIt{
  0%{
      transform: scale(0) ;
    -webkit-transform: scale(0) ;
    -moz-transform: scale(0) ;
  }


  100%{
       transform: scale(1) ;
    -webkit-transform: scale(1) ;
    -moz-transform: scale(1) ;
  }
}

@-webkit-keyframes bigIt{
  0%{
      transform: scale(0) ;
    -webkit-transform: scale(0) ;
    -moz-transform: scale(0) ;
  }


  100%{
       transform: scale(1) ;
    -webkit-transform: scale(1) ;
    -moz-transform: scale(1);
  }
}







