@import url('https://fonts.googleapis.com/css?family=Marvel');

/*Now the CSS*/
* {margin: 0; padding: 0;}
html, body { font-family: 'Marvel', sans-serif; font-size: 20px; width: 100%; text-align: center; }

#contact { font-size: 1em; display: inline-block; width: 30em; }
#contact table { text-align: left; }
#contact table tr td:last-child { margin-left: 1em; width: 100%; }
#contact table tfoot tr td { display:block; margin-top: 1em; }
#contact table span.vereist { vertical-align:sub; font-weight: bold; color: red; float: right; }
.header { margin-bottom: 1em; }
#footer { display: block; margin-top: 3em; font-size: .7em; margin-bottom: 1em; }

#gegevens { margin-top: 1em; margin-bottom: 2em; display:inline-block; position:relative; width: auto; min-width: 800px; margin-left:auto; margin-right:auto;}
#gegevens h1 { margin-bottom: 1em; font-size: 2em; }
#gegevens p { font-size: 1em; }

form {
	background-color: aliceblue;
	padding: 10px;
	border: solid 1px #85b1de;

	background-image:
	-webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0.72, #F0F8FF),
		color-stop(1, #F8F8FF)
	);
	background-image: -o-linear-gradient(bottom, #F0F8FF 72%, #F8F8FF 100%);
	background-image: -moz-linear-gradient(bottom, #F0F8FF 72%, #F8F8FF 100%);
	background-image: -webkit-linear-gradient(bottom, #F0F8FF 72%, #F8F8FF 100%);
	background-image: -ms-linear-gradient(bottom, #F0F8FF 72%, #F8F8FF 100%);
	background-image: linear-gradient(to bottom, #F0F8FF 72%, #F8F8FF 100%);

	-webkit-box-shadow: #c0c0c0 0px 5px 8px;
	-moz-box-shadow: #c0c0c0 0px 5px 8px;
	box-shadow: #c0c0c0 0px 5px 8px;

	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}

input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),textarea {
	border: 1px solid #ccc;
	padding: 5px 10px;
	text-decoration: none;
	color: #666;
	display: inline-block;
	-moz-outline: none;
	outline: none;
	background-color: #fafafa;
	width: 95%;

	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;

	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

#menu {
	margin-top: 2em;
	margin-left:auto;
	margin-right:auto;
	z-index: 99;
	width: 800px;
}

#menu li a {
	display: block;
	float: left;
	margin-left: 2em;
	border: 1px solid #ccc;
	background-color: #fafafa;

	margin-bottom: .5em;
	padding: 5px 10px;
	text-decoration: none;
	color: #666;
	display: inline-block;
	-moz-outline: none;
	outline: none;

	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;

	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
#menu li {
	text-align: center;
	list-style-type: none;

	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

#menu ul {
	padding-top: 20px; position: relative;

	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
input:hover:not([type="radio"]):not([type="checkbox"]):not([type="file"]), input:focus:not([type="radio"]):not([type="checkbox"]):not([type="file"]), #menu li a:hover, textarea:hover, textarea:focus {
	background: #c8e4f8; color: #000; border: 1px solid #94a0b4;
}

/*
  Hide radio button (the round disc)
  we will use just the label to create pushbutton effect
*/
input[type="radio"],input[type="file"] {
    display:none;
    margin:10px;
}

/*
  Change the look'n'feel of labels (which are adjacent to radiobuttons).
  Add some margin, padding to label
*/
input[type="radio"] + label,input[type="file"] + label {
	display:inline-block;
	margin:-2px;
	padding: 4px 12px;
	background-color: #fafafa;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border: 1px solid #ccc;
	margin: 0 .1em;
}
/*
 Change background color for label next to checked radio button
 to make it look like highlighted button
*/
input[type="radio"]:checked + label {
	background-image: none;
	background-color:#c8e4f8;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
input[type="file"]:hover + label,input[type="radio"]:not(:checked):hover + label {
	background-image: none;
	background-color:#c8e4f8;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

input[type="submit"],input[type="button"] {
	cursor: pointer;
}

input[type='text'] { font-family: 'Marvel', sans-serif; font-size: 1em; }
