a{
	font-family: helvetica, sans-serif;
	color: #cccccc;
	display: inline-block;
	background-color: #333333;
	padding: 20px;
	text-decoration: none;
	border-radius: 5px;
	margin: 0px auto;
	width: auto;
	font-size: 20pt;
	box-shadow: 0 0 1px rgba(0,0,0,0);
	transition: color 0.3s, background-color 0.3s;
	-webkit-transition: color 0.3s, background-color 0.3s;
	-moz-transition: all 0.3s;		
}
a:hover{
	color: white;
	background-color: #344456;
	box-shadow: 0 3px 10px rgba(0,0,0,0.3);	
}

h1{
	-moz-animation-duration: 2s;
	-webkit-animation-duration: 2s;	
	animation-duration: 2s;
	-moz-animation-name: fadeIn;
	-webkit-animation-name: fadeIn;		
	animation-name: fadeIn;
	-moz-animation-iteration-count: 3;
	-webkit-animation-iteration-count: infinte;	
	animation-iteration-count: infinte;
}

@keyframes fadeIn{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}

@-moz-keyframes fadeIn{
	0%{
		opacity: 0;
		margin-left: 50px;		
	}
	50%{
		opacity: 1;
		margin-left: 50px;
	}
	100%{
		margin-left: 0px;
	}
}