body, html {
    height: 100vh;
    font-family: "Arial, Helvetica", sans-serif;
    margin: 0px;
    color: white;
}

* {
    box-sizing: border-box;
}

.datenschutz p {
    padding: 0 20%;
    text-align: justify;
}

.datenschutz p a {
    color: white;
}

.impressum p {
    padding: 0 20%;
    text-align: left;
}

.impressum p a {
    color: white;
}

.bg-image {
    background-image: url("/img/buero-boden.jpg");

    filter: blur(15px);
    -webkit-filter: blur(15px);

    height: 100vh;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    overflow: hidden;
}

main {
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.4);
    color: white;
    border: 3px solid #f1f1f1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
}

.home {
    font-weight: bold;
}

.logo {
    width: 25%;
}

main ul {
    padding: 0;
    list-style-type: none;
    margin: 0;
    overflow: hidden;
}

main li {
    padding: 8px;
}

main li a {
    color: white;
    text-decoration: none;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: auto 0;
    text-align: center;
    border-top: 3px solid #f1f1f1;
}

.footer-links {
    position: relative;
    width: 80%;
    text-align: left;
}

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

#footer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10%;
    padding-right: 10%;
}

footer ul {
    padding: 0;
    list-style-type: none;
    margin: 0;
    overflow: hidden;
}

footer li {
    float: left;
}

footer li a {
    display: block;
    color: white;
    text-align: center;
    padding: 16px;
    text-decoration: none;
}




/*
#footer-wrapper {
    display:table;
    table-layout:fixed;
    width:100%;
    margin:0 auto;
}

#footer-wrapper > div {
    display:table-cell;
    vertical-align:middle;
    outline:1px dashed red;
}

#footer-wrapper > div:nth-child(1) {text-align:left;}
#footer-wrapper > div:nth-child(2) {text-align:center;}
#footer-wrapper > div:nth-child(3) {text-align:right;}

.footer-links ul {
    padding: 0;
}
.footer-links ul li {
    display: inline-block;
    padding-right: 15px;
    font-size:.75em;
}
.footer-links ul li a {
    color: #fff;
    margin: 0;
}

.container {
    max-width: 1674px;
    padding:0 10%;
}
*/