body {
  margin:0; /*gets rid of white space around body*/
  margin-top:20px;
  position:fixed; /*REQUIRED Sets up positioning for your footer*/
;
}

#sticky {
  width:100%;
  height:40px;
  padding-top:10px;
  background:white;
  color:black;
  font-weight:none;
  font-size:16px;
  text-align:center;
  position:fixed;    /*Here's what sticks it*/
  bottom:0;          /*to the bottom of the window*/
  left:0;            /*and to the left of the window.*/
}
