footer {
    position:absolute;
    bottom:0;
    width:100%;
    padding-top: 20px;
    height: 40px;
    text-align: center;
    background-color: #851915;
}

body{
    font-family: 'Lato', sans-serif;
    margin: 0;
    width: auto;
    height: 100%;
    background-color: #c7302b;
    overflow: hidden;
    color: white;
}

a {
    color: white;
    text-decoration: none;
    margin-left: 10%;
    margin-right: 10%;
}

a:hover{
    text-decoration: underline;
}

#main-table{
    display: inline-grid;
    grid-template-columns: 1fr 2fr 1fr;
    height: 100%; /** IE 6 */
    min-height: 100%;
}

#left{
    height: 100%;
    grid-column-start: 1;
    grid-column-end: 1;
    justify-self: left;
    align-self: baseline;
}
#center{
    height: 100%;
    grid-column-start: 2;
    grid-column-end: 2;
    align-self: center;
    text-align: center;
    justify-self: center;
}
#right{
    height: 100%;
    grid-column-start: 3;
    grid-column-end: 3;
}

.stuffs{
    width: 150%;
    object-fit: cover;
}