/* Custom Stylesheet */

/**BODY**/

html,
body {
   margin:0;
   padding:0;
   height:100%;
}

/**MAIN**/
 
* {
  box-sizing: border-box;
}

.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}

#container-header {
    text-align:center;
}

#container-main {
    display: flex;
	justify-content: center;
}

#center{
	position: absolute;
	left: 50%;
	top: 50%;
	-moz-transform: translate(-50%, -50%); /* Firefox */
	-ms-transform: translate(-50%, -50%);  /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Safari and Chrome*/
	-o-transform: translate(-50%, -50%); /* Opera */
	transform: translate(-50%, -50%);
}

#container-footer {
    max-width:960px;
    text-align:center;
}

#header {
   background:#fff;
   padding:10px;
   height:120px;
}
#body {
   padding:10px;
   padding-bottom:100px;   /* Height of the footer */
}
#footer {
   position:absolute;
   bottom:0;
   width:100%;
   height:120px;   /* Height of the footer */
   background:#fff;
}