*{
    border: 0;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
body::-webkit-scrollbar{
    display: none;
}

/*HEADER ANFANG*/
header{
    height: 6em;
    background-color: rgb(139, 36, 36);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header > p{
    font-size: 1.4em;
    line-height: 1.4em;
    color: white;
    padding: 0 2em 0 1em;
}
header > a{
    height: 6em;
    margin-right: 2em;
}
header img{
    height: 100%;
    width: auto;
}
/*HEADER ENDE*/

/*MAIN ANFANG*/
main{
    display: flex;
    flex-direction: column;
    height: auto;
}
/*NAVIGATION ANFANG*/
/*BURGER-MENÜ ANFANG*/
.burger{
    position: absolute;
    margin-left: 2em;
    width: 100px;
    height: 30px;
    background-color:rgb(139, 36, 36);
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
}
.burger div{
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: white;
}
.show{
    display: block;
}
/*Burger-MENÜ ENDE*/
.navigation{
    display: flex;
    position: relative;
    justify-content: center;
    background-color: rgb(73, 26, 26);
}
.navigation > nav{
    width: 100%;
    text-align: center;
}
main > div > nav > ul{
    display: none;
}
#ausfahren li{
    background-color: rgb(139, 36, 36);
    margin: 1em 0 1em 0;
    cursor: pointer;
    list-style: none;
}
main > div > nav > ul a{
    text-decoration: none;
    padding: 1em 0.5em 1em 0.5em;
    color: white;
    font-size: 1.2em;
    display: block;
}
#ausfahren li:hover{
    background-color: rgb(197, 86, 86);
}

#ausfahren li:first-child{
    margin-top: 2.5em;
}
#ausfahren li:last-child{
    margin-bottom: 2.5em;
}
/*UNTERPUNKTE ANFANG*/
.dropdown{
    list-style: none;
    margin-bottom: 1em;
}
.unterpunkte{
    display: none;
    cursor: pointer;
    margin-top: -0.7em;
    margin-left: 10em;
}
#ausfahren2 li{
    margin: 0.3em 0 0 0;
    background-color: rgb(133, 13, 13);
}
#ausfahren2 li:first-child{
    margin-top: 0;
}
#ausfahren2 li:last-child{
    border-radius: 0 0 0 1em;
}
#ausfahren2 a{
    padding: 1em 0.5em 1em 0.5em;
}
.show2{
    display: block;
}
/*UNTERPUNKTE ENDE*/
/*NAVIGATION ENDE*/

/*INHALT ANFANG*/
.inhalt{
    display: flex;
    flex-direction: column;
    padding: 2em;
}
.inhalt h1{
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-size: 1.7em;
    font-weight: bold;
    line-height: 1.5em;
    text-align: center;
}
.inhalt h2{
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 0.5em;
}
.inhalt > div:nth-child(2) > h2{
    margin-top: 0.5em;
}
.galerie{
    display: flex;
    flex-wrap: wrap;
    margin: -0.5em;
}
.thumbnail{
    width: 100%;
    height: 15em;
    margin: 0.5em;
}
.galerie img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.galerie img:hover{
    cursor: pointer;
    opacity: 60%;
}
.lightbox{
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1em;
    background: rgba(0, 0, 0, 0.8);
}
.lightbox:target{
    display: block;
}
.lightbox span{
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
/*INHALT ENDE*/
/*MAIN ENDE*/


@media only screen and (min-width: 1000px){
    /*HEADER ANFANG*/
    header{
        height: 10em;
    }
    header > p{
        font-size: 2em;
        padding: 2em 2em 0 4em;
    }
    header > a{
        height: 10em;
        margin-right: 7em;
    }
    /*HEADER ENDE*/

    /*MAIN ANFANG*/
    main{
        flex-direction: row;
        height: auto;
    }
    /*NAVIGATION ANFANG*/
    /*BURGER-MENÜ ANFANG*/
    .burger{
        display: none;
    }
    /*Burger-MENÜ ENDE*/
    .navigation{
        position: none;
        width: 15%;
        height: auto;
    }
    .navigation > nav{
        padding-top: 8em;
    }
    main > div > nav > ul{
        display: block;
    }
    
    #ausfahren li:first-child{
        margin-top: 0;
    }
    #ausfahren li:last-child{
        margin-bottom: 0;
    }
    /*UNTERPUNKTE ANFANG*/
    .dropdown{
        margin-bottom: 5em;
    }
    #ausfahren2{
        margin-left: 3em;
    }
    #ausfahren2 li{
        margin: 0.3em 0 0 0;
        background-color: rgb(133, 13, 13);
    }
    /*UNTERPUNKTE ENDE*/
    /*NAVIGATION ENDE*/

    /*INHALT ANFANG*/
    .inhalt{
        display: flex;
        flex-direction: column;
        width: 85%;
        padding: 3em;
    }
    .inhalt h1{
        margin-bottom: 0.5em;
        margin-top: 0;
        font-size: 1.7em;
        font-weight: bold;
        line-height: 1.5em;
    }
    .galerie{
        display: flex;
        flex-wrap: wrap;
        margin: -0.5em;
    }
    .thumbnail{
        width: unset;
        height: unset;
        margin: unset;
    }
    .galerie img{
        object-fit: cover;
        height: 40vh;
        width: auto;
        flex-grow: 1;
        margin: 0.5em;
    }
    .galerie img:hover{
        cursor: pointer;
        opacity: 60%;
    }
    .lightbox{
        display: none;
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1em;
        background: rgba(0, 0, 0, 0.9)
    }
    .lightbox:target{
        display: block;
    }
    .lightbox span{
        display: block;
        width: 100%;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    /*INHALT ENDE*/
    /*MAIN ENDE*/
}


@media only screen and (min-width: 1300px){
    /*HEADER ANFANG*/
    header{
        height: 10em;
    }
    header > p{
        font-size: 2.5em;
        padding: 2em 2em 0 6em;
    }
    header > a{
        height: 10em;
        margin-right: 7em;
    }
    /*HEADER ENDE*/

    /*MAIN ANFANG*/
    main{
        flex-direction: row;
        height: auto;
    }
    /*NAVIGATION ANFANG*/
    /*BURGER-MENÜ ANFANG*/
    .burger{
        display: none;
    }
    /*Burger-MENÜ ENDE*/
    .navigation{
        position: none;
        width: 15%;
        height: auto;
    }
    .navigation > nav{
        padding-top: 8em;
    }
    main > div > nav > ul{
        display: block;
    }
    
    #ausfahren li:first-child{
        margin-top: 0;
    }
    #ausfahren li:last-child{
        margin-bottom: 0;
    }
    /*UNTERPUNKTE ANFANG*/
    .dropdown{
        margin-bottom: 5em;
    }
    #ausfahren2{
        margin-left: 3em;
    }
    #ausfahren2 li{
        margin: 0.3em 0 0 0;
        background-color: rgb(133, 13, 13);
    }
    /*UNTERPUNKTE ENDE*/
    /*NAVIGATION ENDE*/

    /*INHALT ANFANG*/
    .inhalt{
        display: flex;
        flex-direction: column;
        width: 85%;
        padding: 3em;
    }
    .inhalt h1{
        margin-bottom: 0.5em;
        margin-top: 0;
        font-size: 1.7em;
        font-weight: bold;
        line-height: 1.5em;
    }
    .galerie{
        display: flex;
        flex-wrap: wrap;
        margin: -0.5em;
    }
    .thumbnail{
        width: unset;
        height: unset;
        margin: unset;
    }
    .galerie img{
        object-fit: cover;
        height: 40vh;
        width: auto;
        flex-grow: 1;
        margin: 0.5em;
    }
    .galerie img:hover{
        cursor: pointer;
        opacity: 60%;
    }
    .lightbox{
        display: none;
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1em;
        background: rgba(0, 0, 0, 0.9)
    }
    .lightbox:target{
        display: block;
    }
    .lightbox span{
        display: block;
        width: 100%;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    /*INHALT ENDE*/
    /*MAIN ENDE*/
}