* {
    box-sizing: border-box;
}

body {
    font-family: 'Rubrik', sans-serif;
    margin: 0;
    background-color: rgb(234, 243, 252);
}

.backgrnd {
    background-image: url(bilder/home/Hafen-002.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.top-1 {
    width: 100%;
    height: 80px;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: unset;
    background-color: rgba(234, 243, 252, 0.3);
}

#top-2 {
    width: 100%;
    height: 80px;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background-color: rgb(80, 83, 88);
    top: -100px;
    transition: top 0.7s;
    z-index: 1;
}

.bild-1 {
    height: 50px;
}

/* ---- Beginn Navigation ---- */

#navbar {
    padding-top: 0;
    overflow: hidden;
    z-index: 2;
}

#navbar1 {
    padding-top: 0;
    overflow: hidden;
    z-index: 1;
}

.navigation {
    text-align: center;
    display: flex; 
    align-items: center;
}

.navigation1 {
    text-align: center;
    display: flex;
    align-items: center;
}

.navigation a {
    padding: 15px;
    width: 125px;
    float: left;
    text-decoration: none;
    font-size: 18px;
    color: rgb(54, 54, 54);
    font-weight: bold;
}

.navigation .icon {
    display: none;
}

.navigation1 a {
    padding: 15px;
    width: 125px;
    float: left;
    text-decoration: none;
    font-size: 18px;
    color: rgb(234, 243, 252);
    font-weight: bold;
}

.active {
    background-color: rgb(125, 190, 255);
}

.active1 {
    background-color: rgb(125, 190, 255);
    color: black;
}

.navigation a:hover {
    background-color: black;
    color: white;
}

.navigation1 a:hover {
    background-color: black;
}

@media screen and (max-width: 600px) {
    .backgrnd {
       width: 100%;
       height: unset;
       position:unset;
       height: auto;
       object-fit: unset;
    }

    #top-2 {
        display: none;
    }
    .top-1 {
        padding-left: unset;
        padding-right: unset;
        display: flex;
        justify-content: unset;
        align-items: unset;
        height: auto;
    }
    .navigation {
        padding-top: 15px;
        padding-bottom: 15px;
        display: unset;
        width: 100%;
        z-index: 1;
    }
    .navigation a {
        display: none;
    }
    .navigation a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .navigation.responsive {
        position: relative;
    }
    .navigation.responsive .icon {
        position: absolute;
        right: 0;
        top: 15px;
    }
    .navigation.responsive a {
        float: none;
        display: block;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.7);
    }
}

/* ---- End Navigation ---- */

/* ---- Beginn Tagesaktualität ---- */

.aktuell {
    background-color: rgba(234, 243, 252, 0.6);
    width: 750px;
    height: 300px;
    padding: 15px;
    margin-left: auto;   
    margin-right: auto;
    margin-top: 100px;
    text-align: center;
}

.text01-aktuell {
    font-size: 45px;
}
.text02-aktuell {
    font-size: 25px;
    font-weight: bold;
}

@media screen and (max-width: 600px) {
    .nav-bild {
        transform: unset;
        transition: unset;
        display: block;
    }
    .nav-bild:hover {
        transform: unset;
    }
    .aktuell {
        background-color: rgba(255, 255, 255, 0.7);
        width: 80%;
        height: auto;
        padding: 15px;
        margin-top: 10px;
    }
    .text01-aktuell {
        font-size: 25px;
    }
    .text02-aktuell {
        font-size: 20px;
    }
}

/* ---- End Tagesaktualität ---- */

.main-content-h {
    max-width: 1400px;
    margin: auto;
    padding: 0, 20px;
    text-align: center;
    margin-bottom: 20px;
}

.main-content-h-1 {
    margin: auto;
    margin-top: 20px;
}

.main-content-h-1::after {
    content: "";
    display: table;
    clear: both;
}

figure {
    overflow: hidden;
    margin: 0;
}

.column {
    float: left;
    padding: 10px;
    display: block;
    overflow: hidden;
    position: relative;
}

.column.left {
    width: 50%;
    padding: 10px;
}

.column.right {
    width: 50%;
    padding: 10px;
}

.nav-bild {
    transform: scale(1);
    transition: 0.8s ease-in-out;
    display: block;
}

.nav-bild:hover {
    transform: scale(1.2);
}

/* ---- Beginn Fuss Zeile ---- */

.fuss {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    background-color: rgb(179, 224, 245);
}

.link-02 a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 100;
}

/* ---- End Fuss Zeile ---- */