
/* Hintergrundbild */
body {
    background-image: url("images/snowy-cloudy-forest-for-the-web.jpg");
    background-color: #dddddd;
    background-size: 100%;
    background-repeat: no-repeat;
}


/* Navigationsleiste */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    margin-bottom: 5px;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover:not(.active) {
    background-color: #111;
}

.active {
    background-color: #4caf50;
}

/* Nav ende */

.right {
    float: right;
}

.Inhalt {
    float: left;
    min-width: 300px;
    width: 35%;
}