@import url(http://fonts.googleapis.com/css?family=Roboto);
@import url(http://fonts.googleapis.com/css?family=Roboto:400,300);
body{
	background: #CB1211;
	font-family: 'Roboto', sans-serif;
	color: #E5E5E5;

}

h1{
	font-size: 3.8em;
	padding-bottom: 35px;
}

p{
	margin: 10px auto;
	font-size: .75em;
	font-weight: 300;
	letter-spacing: .08em;
	line-height: 1.2em;
}

a{
	text-decoration: none;
	color: white;
	font-size: .75em;
	letter-spacing: .08em;
	font-weight: 300;

}

a:hover{
	color: #B7B7B7 ;
}

a:active{
	color: white;
}

.grey{
	color: #B7B7B7;
}

.container{
	margin: 165px auto;
	width: 420px;
}

.cr{
	position: relative;
	-webkit-animation-name: moving; /* Chrome, Safari, Opera */
	-webkit-animation-duration: 1s; /* Chrome, Safari, Opera */
	animation-name: moving;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards; /* Chrome, Safari, Opera */
	animation-fill-mode: forwards;
}

.rest{
	position: relative;
	-webkit-animation-name: moving; /* Chrome, Safari, Opera */
	-webkit-animation-duration: 1s; /* Chrome, Safari, Opera */
	animation-name: moving;
	animation-duration: 1s;
	-webkit-animation-delay: 0.5s; /* Chrome, Safari, Opera */
	animation-delay: 0.5s;
	-webkit-animation-fill-mode: forwards; /* Chrome, Safari, Opera */
    animation-fill-mode: forwards;
	left: -300%;
}

.red{
	position: absolute;
	height: 200px;
	width: 90%;
	background: #CB1211;
	top: 230px;

	-webkit-animation-name: unhide; /* Chrome, Safari, Opera */
	-webkit-animation-duration: 1.5s; /* Chrome, Safari, Opera */
	animation-name: unhide;
	animation-duration: 1.5s;

	-webkit-animation-delay: 1.5s; /* Chrome, Safari, Opera */
	animation-delay: 1.5s;
	-webkit-animation-fill-mode: forwards; /* Chrome, Safari, Opera */
    animation-fill-mode: forwards;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes moving {
    0% {
    	left: -300%; 
    	filter: blur(35px); 
    	-webkit-filter: blur(35px); 
    	-moz-filter: blur(35px);
    	-o-filter: blur(35px); 
    	-ms-filter: blur(35px);
    }
    100% {
    	left: 0px; 
    	filter: blur(0px); 
    	-webkit-filter: blur(0px); 
    	-moz-filter: blur(0px);
    	-o-filter: blur(0px); 
    	-ms-filter: blur(0px);
    }
}

/* Standard syntax */
@keyframes moving {
    0% {
    	left: -300%; 
    	filter: blur(35px); 
    	-webkit-filter: blur(35px); 
    	-moz-filter: blur(35px);
    	-o-filter: blur(35px); 
    	-ms-filter: blur(35px);
    }
    100% {
    	left: 0px;
    	filter: blur(0px); 
    	-webkit-filter: blur(0px); 
    	-moz-filter: blur(0px);
    	-o-filter: blur(0px); 
    	-ms-filter: blur(0px);
    }
}

@-webkit-keyframes unhide{
	0%{
		left: 10%;
	}
	100%{
		left: 100%;
		width: 0px;
	}
}

@keyframes unhide{
	0%{
		left: 10%;
	}
	100%{
		left: 100%;
		width: 0px;
	}
}


@media (max-width: 400px) {
	
	h1{
		font-size: 2em;
	}

	.container{
		width: 200px;
	}

}

@media (max-height: 320px) {
	
	.container{
		margin: 80px auto;
	}

	.red{
		top: 160px;
	}

}

