<!doctype html>

<html lang="nl">

<head>

<meta charset="utf-8">

<meta name="viewport" content="width=device-width, initial-scale=1">

<title>Website in aanbouw</title>

<style>

body {

margin: 0;

font-family: Arial, sans-serif;

background: #f7f7f7;

color: #222;

display: flex;

align-items: center;

justify-content: center;

min-height: 100vh;

text-align: center;

}

.box {

background: white;

padding: 40px;

border-radius: 16px;

box-shadow: 0 10px 30px rgba(0,0,0,0.08);

max-width: 600px;

margin: 20px;

}

h1 {

margin-top: 0;

font-size: 32px;

}

p {

font-size: 18px;

line-height: 1.6;

}

</style>

</head>

<body>

<div class="box">

<h1>Website in aanbouw</h1>

<p>Onze website is momenteel under construction.</p>

<p>Binnenkort vind je hier meer informatie.</p>

</div>

</body>

</html>