/* INDEX */
@-webkit-keyframes name{
	0%{
		opacity:0;
	}
	100%{
		opacity:1;
	}
}
@keyframes name{
	0%{
		opacity:0;
	}
	100%{
		opacity:1;
	}
}
h1, #lead, #topics, #links{
  -webkit-animation-name: name;
  animation-name: name;
  -webkit-animation-fill-mode:backwards;
  -webkit-animation-delay: 1.5s;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
  animation-fill-mode:backwards;
  animation-delay: 1.5s;
  animation-duration: 2s;
  animation-iteration-count: 1;
}
#lead{
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
#topics, #links{
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.snowfall-flakes{
  -webkit-animation-delay: 4.5s;
  -webkit-animation-duration: 3s;
  animation-delay: 4.5s;
  -webkit-animation-duration: 3s;
}


@-webkit-keyframes bgtop{
	0%{
		background-position:bottom center;
	}
	100%{
		background-position:top center;
	}
}
@keyframes bgtop{
	0%{
		background-position:bottom center;
	}
	100%{
		background-position:top center;
	}
}
body{
	-webkit-animation-name: bgtop;
	animation-name: bgtop;
	-webkit-animation-fill-mode:backwards;
	-webkit-animation-delay: 1s;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: 1;
	animation-fill-mode:backwards;
	animation-delay: 1s;
	animation-duration: 1s;
	animation-iteration-count: 1;
}
.bg2{
	-webkit-animation-name: bgtop;
	animation-name: bgtop;
	-webkit-animation-fill-mode:backwards;
	-webkit-animation-delay: 1s;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: 1;
	animation-fill-mode:backwards;
	animation-delay: 1s;
	animation-duration: 1s;
	animation-iteration-count: 1;
}


@-webkit-keyframes titleIn{
	0%{
		width:1px;
		opacity:0;
	}
	100%{
		width:640px;
		opacity:1;
	}
}
@keyframes titleIn{
	0%{
		width:1px;
		opacity:0;
	}
	100%{
		width:640px;
		opacity:1;
	}
}
#title{
  -webkit-animation-name: titleIn;
  animation-name: titleIn;
  -webkit-animation-fill-mode:backwards;
  -webkit-animation-delay: 1s;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
  animation-fill-mode:backwards;
  animation-delay: 1s;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
}