/***************************************** Achtergrond  ***********************************/
HTML 
{ 
	height: 100%; 
	background-color: peru; 
} 

BODY
{  
	margin: 0; 
	height: 100%; 
	width: 100%; 

	background-image: linear-gradient(bottom, #E67931 14%, #006CFF 71%);
	background-image: -o-linear-gradient(bottom, #E67931 14%, #006CFF 71%);
	background-image: -moz-linear-gradient(bottom, #E67931 14%, #006CFF 71%);
	background-image: -webkit-linear-gradient(bottom, #E67931 14%, #006CFF 71%);
	background-image: -ms-linear-gradient(bottom, #E67931 14%, #006CFF 71%);

	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.14, #E67931),
		color-stop(0.71, #006CFF) );
}
