* {
 box-sizing: border-box;
}
*:before,
*:after {
 box-sizing: border-box;
}
html,
body {
  font-family: 'PT Sans', sans-serif;
  /* padding-top: 5px; */
  /*padding-bottom: 20px;*/
  height: 100%;
  position: relative;
  padding: 0px;
  /* background-color: #EC7063; */
}
#wrapper {
 min-height: 100vh; /* will cover the 100% of viewport */
 overflow: hidden;
 display: block;
 position: relative;
 padding-left: 0px;
 padding-right: 0px;
 padding-top: 0px;
 padding-bottom: 40px; /* height of your footer */
 /* background-color: #F9E79F; */
}
footer {
 position: absolute;
 bottom: 0;
 width: 100%;
 height: 40px;
 padding: 5px;
 background-color: #EAEDED;
 border-color: #EAEDED;
}
#main {
  	min-height: 100%;
  	position: relative;
    padding: 15px;
    /* background-color: #5DADE2; */
}
