Start with a div with class level0-flex-container.
This gives us a container that fills the window with overflow:hidden applied to body and form

body, form { 
  overflow:hidden; 
 } 
.level0-flex-container {
  background:red; 
  display:flex; 
  flex-direction:column; 
  height: 100vh; 
}