body {

}

h1, h2, h3, h4 {
	font-weight: normal;
	font-weight: 48px;
}

/*position: fixed; is great for a sticky nav*/

h4 {
	position: fixed;
}
a {
	display: inline-block;
	background-color: #333;
	color: #ccc;
	padding:10px;
	text-decoration: none;
	border-radius: 5px;
	box-shadow: 0 0 1px rgba (0,0,0,0);
	-webkit-transition: color 0.5s, background-color 0.5s, box-shadow 0.3s;
	-moz-transition: color 0.5s, background-color 0.5s, box-shadow 0.3s;
	transition: color 0.5s, background-color 0.5s, box-shadow 0.3s;
}

a:hover {
	color: #fff;
	background-color: green;
	box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

h1{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: fadein;
	animation-name: fadein;
}

/*can also do percentages instead of from to*/

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

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