/*Show the iframe at full size with no margins or padding*/
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

/*Full size iframe*/
iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}