/* Allgemeine Einstellungen */
html{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
body {
    margin: 0;
    padding: 0;
    background: #2D2D2D;
    overflow-x: hidden;
    color: #FFFFFF;
    font-family: "Palatino Linotype", Palatino, serif;
}

header {
    width: 100%;
}

.imageFooter {
    width: 100%;
    position: relative;
    z-index: 10;
    background: transparent;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    bottom: 0;
}

.impressum-link {
    position: absolute;
    bottom: 20px;
    left: 40%;
    transform: translateX(-50%);
    z-index: 11;
    color: white;
    text-decoration: none;
    font-size: 1em;
}

.kontakt-link {
    position: absolute;
    bottom: 20px;
    right: 40%;
    transform: translateX(-50%);
    z-index: 11;
    color: white;
    text-decoration: none;
    font-size: 1em;
}

.imageFooter img {
    min-height: 250px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.top-nav ul.menu {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 10px;
}

@media (max-width: 650px) {
    .texthome {
        font-size: 2em;
    }
    .impressum-link {
        left: 30%;
    }
    .kontakt-link {
        left: 70%;
    }

}

@media (min-width: 701px) {
    .texthome {
        font-size: 3vw;
    }
}

h1 {
    text-align: center;
}

.logo {
    height: 80px;
    width: auto;
    margin-left: 10px;
}