* {
    margin: 0;
    padding: 0;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
}

#main {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#logo-wrapper {
    position: absolute;
    left: 50%;
    top: 25vh;
    max-width: calc(100% - 40px);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}

@media only screen and (min-width: 640px) {
    #logo-wrapper {
        top: 33%;
    }
}

#logo1-wrapper {
    position: relative;
    width: 200px;
    max-width: 40vw;
    height: auto;
    aspect-ratio: 1241/1156;
    margin: 0 auto;
    margin-bottom: 50px;
    background-image: url(./files/Marke.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media only screen and (min-width: 640px) {
    #logo1-wrapper {
        margin-bottom: 100px;
    }
}



#logo2-wrapper {
    position: relative;
    width: 464px;
    height: 89px;
    max-width: 100%;
    margin: 0 auto;
    background-image: url(./files/Schriftzug.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

#footer-wrapper {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

#footer-left {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

#footer-right {
    position: relative;
    width: 100%;
}

@media only screen and (min-width: 640px) {
    #footer-left {
        width: 50%;
        margin-bottom: 0;
    }

    #footer-right {
        width: 50%;
    }
}

#footer-bottom {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

.footer-contact, .footer-contact a {
    width: 100%;
    text-align: center;
    font-weight: normal;
    color: #000000;
    text-decoration: none;
}