/*
====================================================================
BASICS
====================================================================
*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

/*
==================================================================
HEADER
==================================================================
*/

header {
    background-color: hsla(0, 0%, 20%, 1);
    height: 4rem;   
    position: relative;
    width: 100%;
}

.logo {
    border-bottom: 2px solid hsla(2, 100%, 34%, 1);
    border-top: 2px solid hsla(2, 100%, 34%, 1);
    margin: 0 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.nav_main ul{
    margin: auto 1%;
    padding: 0;
    position: absolute;
    right: 1%;
    top: 50%;
    transform: translateY(-50%);
}

.nav_main li {
    display: inline-block;
    margin: auto 8px;
    }

.nav_main li:last-child {
    margin-right: 0;
}

.nav_main a {
    text-decoration: none;
}

/*
==================================================================
CONTENT
==================================================================
*/

.container {
    background-color: dimgray;
    margin: 0;
    min-height: 100vh;
}

#jumbotron {
    background: url("../src/pics/Zuversicht.jpg") no-repeat center center;
    background-size: cover;
    border: 2vw solid white;
    height: 75vw;
    width: 100%;
}

/*
==================================================================
FOOTER
==================================================================
*/
footer {
    background-color: hsla(0, 0%, 20%, 1);
    bottom: 0%;
    height: 2rem;
    position: relative;
    width: 100%;
}

.footer-text {
    float: left;
    margin: 0 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}