@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&display=swap');

html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    width: 90%;
    margin: 0;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}
h1 {
    font-family: 'Bowlby One SC', cursive;
    color: white;
}
.left {
    width: 49%;
    display: inline-block;
    text-align: center;
}
.right {
    width: 49%;
    display: inline-block;
    text-align: center;
}
.left img, .right img {
    width: 75%;
}
.hoofdtitel {
    padding-top: 20px;
    text-align: center;
    font-size: 50pt;
    color: red;
}
.content {
    color: white;
    line-height: 200%;
}
.myButton {
	box-shadow:inset 0px 1px 0px 0px #f29c93;
	background:linear-gradient(to bottom, #fe1a00 5%, #ce0100 100%);
	background-color:#fe1a00;
	border-radius:6px;
	border:1px solid #d83526;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #b23e35;
}
.myButton:hover {
	background:linear-gradient(to bottom, #ce0100 5%, #fe1a00 100%);
	background-color:#ce0100;
}
.myButton:active {
	position:relative;
	top:1px;
}