<html lang="nl">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Volledig scherm iframe</title>
  <style>
    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow: hidden;
    }

    iframe {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      border: none;
      z-index: 999999;
    }
  </style>
</head>
<body>
  <iframe 
    src="https://curious-inc-labs.ew.r.appspot.com/"
    allowfullscreen
  ></iframe>
</body>
</html>