 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #000;
            color: #D2B068;
        }
        .container {
            text-align: center;
            padding: 20px;
        }
        .photos {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        .photos img {
            max-width: 100%;
            height: 800;
            border: 2px solid #D2B068;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        }
        .language-selection {
            margin-top: 20px;
        }
        .language-selection a {
            display: inline-block;
            margin: 10px;
            padding: 10px 20px;
            font-size: 18px;
            color: #000;
            background-color: #D2B068;
            text-decoration: none;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            transition: background-color 0.3s, transform 0.3s;
        }
        .language-selection a:hover {
            background-color: #e5c100;
            transform: scale(1.05);
        }
	.logo img {
  	  height: 350px; /* Vaste hoogte voor het logo */
 	   width: auto;
   	   margin-right: 20px;
   	 /* Optioneel: Voeg een max-width toe om nog meer controle te hebben over de grootte */
	}