/* apply a natural box layout model to all elements */
*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
 }

body {
	background-color: 	#ededed;
	font-family: 		"Karla", sans-serif;
	letter-spacing: 	-0.025em;
	position:			absolute;
	top:				0;
	left:				0;
	right:				0;
	bottom:				0;
	line-height: 		1.4;
}

a {
	color:				inherit;
}

article {
	padding:			0 2em 2em 2em;
}

.button {
	text-decoration: 	none;
	padding:			1em 3em;
	border-radius: 		5px;
	border:				1px solid;
	transition:			0.2s;
}
