* { 
    box-sizing: border-box; 
}

body {
  padding: 0; margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#pageMain { 
    flex-grow: 1; 
     height: 100vh;
    background: linear-gradient(105deg, #69a9e0 50%, #fff 50%);
}

#pageFoot {
    position: fixed;
    bottom: 0%;
}