body {
	background: #222;
	color: #fff;
	
}

.textContainer {
	
}

.textContainer {
	margin: auto;
	width: 800px;
	height: 300px;
	text-align: center;
	margin-top: 100px;
	border: 1px solid #028fd7;
	
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-weight: 300;
	font-size: 50px;
	
	-webkit-transition-property:color, background; 
	-webkit-transition-duration: 1s, 1s; 
	-webkit-transition-timing-function: linear, ease-in;
	
}

.textContainer a{
text-decoration: none;
color:#999; 

-webkit-transition-property:color; 
-webkit-transition-duration: 1s, 1s; 
-webkit-transition-timing-function: linear, ease-in;
}

.textContainer:hover {
	color:#555;
	background:#fff;
}

.textContainer:hover a{
	color: #96dbfe;
}

.textContainer a:hover {
	color:#028fd7;
}