To get a full screen iframe without a scrollbar inside the iframe use the following css. Nothing more is required
iframe{
height: 100vh;
width: 100vw
}
iframe::-webkit-scrollbar {
display: none;
}