

#container{
-webkit-animation: fade-in 0.6s steps(4, end) 0.4s both;
	      animation: fade-in 0.6s steps(4, end) 0.4s both;
}

#decoblur{
-webkit-animation: fade-in-decoblur 0.6s steps(4, end) 1s both;
	      animation: fade-in-decoblur 0.6s steps(4, end) 1s both;
}

#deco{
-webkit-animation: fade-in-deco 0.6s steps(4, end) 1s both;
	      animation: fade-in-deco 0.6s steps(4, end) 1s both;
}

#logo{
-webkit-animation: fade-in 0.6s steps(4, end) 1.6s both;
	      animation: fade-in 0.6s steps(4, end) 1.6s both;
}

#logo:hover{
opacity: 0.5;
}


@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


@-webkit-keyframes fade-in-deco {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes fade-in-deco {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.3;
  }
}

@-webkit-keyframes fade-in-decoblur {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.6;
  }
}
@keyframes fade-in-decoblur {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.6;
  }
}