* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: rgb(158,174,198);
    font-family: 'Nunito', sans-serif;
}

#video-1 {
    right: 0;
    top: 0;
    width: 100%;
}


.top-0 {
    margin: 0;
    display: none;
}

@media screen and (max-width: 600px) {
    .top-0 {
        display: table;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}



.top-1 {
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    background-color: rgba(83, 105, 138, 0.7);
}

.bild-1 {
    height: 100px;
}

@media screen and (max-width: 600px) {
    .bild-1 {
        display: none;
    }
/*    #video-1 {
        display: none;
    }
        */
    .top-1 {
        position: unset;
        display: unset;
        padding: 0;
        background-color: rgb(83, 105, 138);
    }
}

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

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

.navigation {
    text-align: center;
}

.navigation a {
    padding: 15px;
    font-weight: bold;
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: inline;
    font-size: 20px;
}

.navigation a.active {
    background-color: rgb(47, 68, 148);
}

.navigation a:hover {
    color: rgb(180, 180, 180);
}

.navigation .icon {
    display: none;
}

@media screen and (max-width: 600px) {
    #navbar {
        background-color: rgb(83, 105, 138);
    }
    .navigation {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .navigation a {
        display: none;
    }
    .navigation a.icon {
        float: right;
        display: block;
        background-color: rgb(83, 105, 138);
    }
}

@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;
    }
}

/* ---- Ende Navigation ---- */

/* ---- Beginn Main Content ---- */

#main-content-h {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

.text-1 {
    font-weight: bold;
    font-size: 50px;
}

.text-2 {
    font-weight: bold;
}

.text-2-res {
    display: none;
}

@media screen and (max-width: 600px) {
    .text-2 {
        display: none;
    }
    .text-2-res {
        display: block;
        font-size: 20px;
    }
}

.bild-2 {
    width: 100%;
    padding-top: 30px;
}

/* ---- End Main Content ----*/

/* ---- Beginn Footer ----*/

#footer {
    background-color: rgb(83, 105, 138);
    color: white;
    text-align: center;
    font-size: 25px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.fa-facebook {
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 5px;
    font-size: 30px;
    width: 50px;
    text-decoration: none;
    margin: 5px;
    background: #3B5998;
    color: white;
}
.fa-facebook:hover {
    opacity: 0.7;
}
.fa-instagram {
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 5px;
    font-size: 30px;
    width: 50px;
    text-decoration: none;
    margin: 5px;
    background-color: #125688;
    color: white;
}
.fa-instagram:hover {
    opacity: 0.7;
}


.signupbtn {
    background-color: rgb(87, 197, 36);
    color: white;
    cursor: pointer;
}