body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	background: #343333;
	overflow: hidden;
}

a.name, a.blog {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 90px;
	width: 440px;
	margin: -45px 0 0 -220px;
	text-align: center;
	font-family: arial, helvetica, sans-serif;
	font-size: 72px;
	font-weight: bold;
	color: #b8aba9;
	text-decoration: none;
}

.name:hover, .blog:hover {
	color: #6b6564;
}

.blog:hover span {
	-moz-animation-duration: 100ms;
	-moz-animation-iteration-count: 5;
	-moz-animation-name: flicker;
	-webkit-animation-name: flicker;
	-webkit-animation-duration: 100ms;
	-webkit-animation-iteration-count: 5;
	animation-duration: 100ms;
	animation-iteration-count: 5;
	animation-name: flicker;
}

.name span:first {
	position: relative;
	display: block;
	height: 90px;
	width: 440px;
}

.w, .i, .l, .c, .o, .n, .e {
	position: absolute;
	opacity: 0; /* default, pre-animation */
	-moz-animation-duration: 1s;
	-moz-animation-name: swoop;
	-moz-animation-fill-mode: forwards;
	-webkit-animation-duration: 1s;
	-webkit-animation-name: swoop;
	-webkit-animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-name: swoop;
	animation-fill-mode: forwards;
}

.w {
	left: 40px;
}

.i {
	left: 108px;
	-moz-animation-delay: .1s;	
	-webkit-animation-delay: .1s;
	animation-delay: .1s;
}

.l {
	left: 128px;
	-moz-animation-delay: .2s;
	-webkit-animation-delay: .2s;	
	animation-delay: .2s;	
}

.c {
	left: 192px;
	-moz-animation-delay: .3s;	
	-webkit-animation-delay: .3s;
}

.o {
	left: 244px; 
	-moz-animation-delay: .4s;	
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
}

.n {
	left: 300px;
	-moz-animation-delay: .5s;	
	-webkit-animation-delay: .5s;
	animation-delay: .5s;
}

.e {
	left: 352px;
	-moz-animation-delay: .6s;	
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
}

@-moz-keyframes swoop {
	from {
		font-size: 1000px;
		opacity: 0;
	}
	to {
		font-size: 72px;
		opacity: 1;
	}
}

@-webkit-keyframes swoop {
	from {
		font-size: 1000px;
		opacity: 0;
	}
	to {
		font-size: 72px;
		opacity: 1;
	}
}

@keyframes swoop {
	from {
		font-size: 1000px;
		opacity: 0;
	}
	to {
		font-size: 72px;
		opacity: 1;
	}
}

@-moz-keyframes flicker {
	from {
		color: #6b6564;	
	}
	to {
		color: #fff;
	}
}

@-webkit-keyframes flicker {
	from {
		color: #6b6564;	
	}
	to {
		color: #fff;
	}
}

@keyframes flicker {
	from {
		color: #6b6564;	
	}
	to {
		color: #fff;
	}
}