/*Page verteilung*/
body {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-rows: 5% auto 5%;
    width: 100%;
    height: 100%;
    position: absolute;

    background: rgb(0, 0, 0);
    background: linear-gradient(288deg, rgba(0, 0, 0, 0.8379552504595589) 0%, rgba(93, 93, 93, 0.9528011888349089) 45%, rgba(191, 191, 191, 0.9415967070421919) 100%);
}


#Header {
    grid-row: 1/2;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: left;
    max-height: 100%;
    width: 100%;
    margin-bottom: 5px;
    position: relative;
    top: 0;
}

#content-body {
    grid-row: 2/3;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    align-items: center;
    position: relative;
}

#Footer {
    grid-row: 3/4;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: left;
    max-height: 100%;
    width: 100%;
    position: relative;
    bottom: 0;
}


.header-container > .row > .col > a > img {
    max-width: 100%;
    max-height: 100%;
    height: 50px;
    flex-grow: 1;
    padding: 5px;
    float: right;
    right: 0;
    /*position: relative;*/
}


/*Main*/


.footer-container > .row > .col > span {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    flex-grow: 1;
    padding: 5px;
    float: right;
}

/*@media (device-width < 1100px) {*/
@media only screen and (max-width: 767px) {
    #Footer {
        right: 0;
        width: auto;
        height: auto;
    }

    #Header {
        width: auto;
        height: auto;
    }

    #content-body {
        width: auto;
        height: auto;
    }


}