@charset "UTF-8";
/* 
kleuren schema #69d2e7 #a7dbd8 #e0e4cc #f38630 #fa6900 
		23a7c0 44c0d7		 ffb981 ffa258
			    bbc29d 9ba371
h1,h2,h3 #fa6900
p #f38630
background #69d2e7 #a7dbd8
box #e0e4cc

*/
body {
	padding:0;
	margin:0;
	background-color: #96ff8c;
/*	background-color: #a7dbd8;
	background: -webkit-linear-gradient(#69d2e7,#a7dbd8);
	background: -o-linear-gradient(#69d2e7,#a7dbd8);
	background: -moz-linear-gradient(#69d2e7,#a7dbd8);
	background: linear-gradient(#69d2e7,#a7dbd8); */
	font-family: Consolas, Ubuntu monospace;
}

/* reset border-box */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}


/* dit zorgt ervoor dat het er in elke browser hetzelfde uitziet */

input,
textarea,
select,
button {
	font-size:15px;
}

a:hover {
	text-decoration:none;
}
:focus {
	outline:none;
}
*, ::after, ::before {
	box-sizing: inherit;
}

textarea,
input {
	outline:none;
	border:none;
}

textarea,
input:focus {
	border-color:transparent!important;
}
input:focus::-webkit-input-placeholder {
	color:transparent;
}
input:focus:-moz-placeholder {
	color:transparent;
}
input:focus::-moz-placeholder {
	color:transparent;
}
input:focus:-ms-input-placeholder {
	color:transparent;
}
input::-webkit-input-placeholder {
	color:#999;
}
input:-moz-placeholder {
	color:#999;
}
input::-moz-placeholder {
	color:#999;
}
input:-ms-input-placeholder {
	color:#999;
}
button {
	outline:none!important;
	border:none;
	background:0 0;
}
button:hover {
	cursor:pointer;
}

h1,
h2,
h3 {
	/* color: #fa6900; */
	color: #3d3c3a;
}

p {
	color: #3d3c3a;
	/*	
	color: #f38630;
*/
}

#uitleg {
	max-width: 1280px;
	min-width: 512px;
	min-height: 100vh;
	margin:0 auto;
}

#info {
	max-width: 1280px;
	min-width: 512px;
	border-bottom: 2px solid #3d3c3a;
	margin-bottom: 10px;
	margin-top: 15px;
	height: 100px;
}
span.auteur {
	float: left;
	margin-top: 10px;
	text-align: left;
	color: #3d3c3a;
}
span.datum {
	float: right;
	margin-top: 10px;
	text-align: right;
	color: #3d3c3a;
}

pre code {
	display: block;
	width: 80%;
	height: auto;
	max-height: 300px;
	min-height: 100px;
	margin: 0 auto;
	padding: 10px 20px;
	border: 2px solid #dddddd;
	background-color: #eeeeee;
	color: #000;
	font-family: consolas, ubuntu monospace;
	overflow: scroll;
}

