/*Show the iframe at full size with no margins or padding*/
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

/*
Full size iframe
Note: we are using 100% instead of 100vw and 100vh because of layout problems on the iPad, see
https://github.com/phetsims/phet-io/issues/749
*/
iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}