body {
    min-height: 100vh;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
}
.header {
    max-height: 110px;
    padding: 25px;
    margin: 0px;
    background-color: #2c2c2c;
    font: 40px Arial, sans-serif;
    color: #fdfdfd;
}
.content {
    flex: 1;
    background-image: url("../images/Background2.jpg");
    background-repeat: repeat;
    background-size: auto;
    font: 60px Arial, sans-serif;
    color: #eee;
    text-align: center;
}
.footer {
    min-height: 80px;
    padding: 10px;
    margin: 0px;
    background-color: #2c2c2c;
    font: 9px Arial, sans-serif;
    color: #fdfdfd;
    text-align: right;
}
.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
table {
    height: 100%;
    width: 100%;
}
th, tr, td {
    vertical-align: middle;
    display: table-cell;
}