body {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-gap: 1em;
    background-color: #000000;
}

.content-left, .content-right {
    float: left;
    width: 50%;
}

footer {
    margin-top: 2rem;
    grid-column: 1 / -1;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.center-content {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    -ms-flex-pack: center;
    min-height: 21rem; 
}

.white-background {
    background-color: #FFFFFF;
    padding: 3rem;	
}

.logo {
    width: 10rem;
}

.image {
    max-width: 100%;
    max-height: 90vh;
    min-height: 21rem;
}

.copyright {
    color: #FFFFFF;
}
@media (max-width: 576px) {
    body {
        grid-template-columns: 1fr;
    }
    .content-left, .content-right {
        width: 100%;
    }
}

@supports (display: grid) {
    .content-left, .content-right {
        width: auto;
    }
}
