@font-face {
    font-family: 'Georgia';
    src: url('fonts/Georgia.eot');
    src: url('fonts/Georgia.eot?#iefix') format('embedded-opentype'),
        url('fonts/Georgia.woff2') format('woff2'),
        url('fonts/Georgia.woff') format('woff'),
        url('fonts/Georgia.ttf') format('truetype'),
        url('fonts/Georgia.svg#Georgia') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Georgia Bold';
    src: url('fonts/Georgia-Bold.eot');
    src: url('fonts/Georgia-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Georgia-Bold.woff2') format('woff2'),
        url('fonts/Georgia-Bold.woff') format('woff'),
        url('fonts/Georgia-Bold.ttf') format('truetype'),
        url('fonts/Georgia-Bold.svg#Georgia-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
        
        :root {
            --text:'Georgia';
            --bold: 'Georgia Bold';
            --font12: 12px;
            --weiss: #fff;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            text-align: left;
            font-family: var(--text);
        }

.container {
    padding: 50px 0 150px 0;
    max-width: 1320px;
    margin: auto;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-image: url('hild_und_heinz_full_background.jpg');
            background-size: cover;
}

footer .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 1320px;
    margin: auto;
    padding: 0;
    align-items: center
}

.social,
.logo,
.foonav {
    width: 100%;
    box-sizing: border-box;
}

.social img {
max-width: 40px;
    margin-right: 15px;
height: auto;
}

.logo img {
    min-width: 400px;
}

.foonav {
text-align: right;
}

.foonav a {
    margin-left: 15px;
    color: var(--weiss);
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}



@media (min-width: 768px) {
    .social,
    .logo,
    .foonav {
        width: calc(33.333% - 10px); /* 10px Abstand zwischen den Elementen */
    }    

}


@media screen and (max-width: 767px) {

    .container {
    padding: 50px 15px 100px 15px;
    }
    
    .social img {
max-width: 20px;
    margin-right: 15px;
height: auto;
}
    
    
    .logo img {
    min-width: 150px;
    }
    
}