<!DOCTYPE html>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            line-height: 1.6;
            display: flex;
			justify-content:flex-start;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        h1 {
            /* De tekst schaalt nu tussen 12px en 24px op basis van schermbreedte */
            font-size: clamp(12px, 3vw, 24px);
            color: lightblue;
        }
		h2 {
            /* De tekst schaalt nu tussen 24px en 48px op basis van schermbreedte */
            font-size: clamp(24px, 5vw, 48px);
            color: #333;
        }

        p {
            /* De gewone tekst schaalt tussen 16px en 20px */
            font-size: clamp(16px, 2vw, 20px);
            max-width: 800px;
            color: #666;
        }

        .menu {
			font-size: clamp(24px, 5vw, 48px);
			
            display: flex;
            gap: 15px;
            flex-wrap: wrap; /* Zorgt dat menu-items onder elkaar verspringen op smalle schermen */
            justify-content: center;
            margin-top: 10px;
        }
        .menu ul {
            display: flex;
			flex-direction: row;
            gap: 20px;
            flex-wrap: wrap; /* Zorgt dat menu-items onder elkaar verspringen op smalle schermen */
            justify-content: center;
			list-style:none;
        }


        .menu-item {
            text-decoration: none;
            color: #007bff;
            font-weight: bold;
            padding: 10px;
        }

		.logo img {
			float:right;
			padding: 10px;
			width: clamp(150px, 30vw,400px);
			height: auto;
		}
		.table table{
			width:100%;
			border-collapse:collapse;
			border: none;
		}

		.table td{
			padding: 0;
		}

        /* Voor mobiele telefoons maken we de achtergrond even een ander kleurtje als test */
        @media (max-width: 600px) {
            body {
				justify-content:flex-end;
                background-color: #f9f9f9;
                padding: 10px;
            }
        }
    </style>
