:root{
    --background-color:#24252A;
    --text-color:white;
}





@import url( 'https://fonts.googleapis.com/css?family=Montserrat:500');

*{ font-size:18px;
    color: var(--text-color);
    margin: 0; 
    padding: 0;
}


html{
    height:100%;
}

body{
    height:100%;
    background:var(--background-color);
}

.logo {
    width:120px;
    margin-left:30px;
}

nav{
    height:70px;
    background:var(--background-color);
    display:flex;
    justify-content: space-between;
    align-items: center;
}

nav ul{
    height:100%;
    width:80%;
    display:flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}

nav li{
    height:80px;
    width:100%;
    text-align: center;
    margin-right: 10px;
}

nav li a:hover{
    color:darkorange;
}


nav ul a{
    height:100%;
    width:100%;
    
    display:flex;
    align-items: center;
    justify-content: center;
    
    font-family:Georgia, "Montserrat", sans-serif;
    text-decoration: none;

}


nav input[type="checkbox"]{
    display: none;
}

.toggle_button{
    width:30px;
    height:23px;
    
    position:absolute;
    top: 25px;
    right: 25px;
    
    display:none;
    flex-direction: column;
    justify-content: space-between;
}

.bar {
    height:4px;
    width:100%;
    background:white;
    border-radius:100px;
}

#ytlink{
    color:rgb(192, 192, 14);
}

#ytlink:hover {
    color:darkorange;
}


#aktuell {
    color:darkorange;
}


#Trenner {
    color:darkorange;
    width:90%;
    margin-left:5%;
}


.auswahl{
    float:left;
    width:80%;
    margin-top:5%;
    margin-left:10%;
    padding-bottom:1em;
    
    border-bottom:2px solid orange;
}

.beschreibung{
    float:left;
    line-height:2em;
    margin-left:2em;
    
    font-family:Arial, Helvetica, sans-serif;
}

.beschreibung h1{
    font-family:'Lucida Sans', Verdana, sans-serif;
}

.beschreibung a{
    text-decoration:none;
    color:rgb(79, 79, 254);
}

.wallpaper img{
    float:left;
    width:120px;
}

.wallpaper img:hover{
    width:170px;
}

.download {
    float:right;
    margin-top:4em;
}

.download button{
    padding:1em;
    width:10em;

    border-color: darkorange;
    border-radius:30px;
    background-color:rgb(248, 177, 90);
    font-family:'Comic Sans MS', Verdana, sans-serif;
    color:black;
}

.download button:hover{
    color:white;

}


@media (max-width:800px) {
    
    #Link {
        display:none;
    }
    
    .toggle_button{
        display:flex;
    }
    
    nav ul {
        height: min-content;
        width:100%;
        
        display:none;
        position: absolute;
        top:70px;

        border-top:2px solid darkorange;
        border-bottom:2px solid darkorange;
    }
    
    nav li {
        background-color:var(--background-color);
        height: min-content;
        width:100%;
    }
    
    nav ul a{
        padding:30px 0;
    }

    
    #toggle_button:checked ~ ul {
        display:block;
    }

    .auswahl {
        width:95%;
        margin-left:2%;
    }

    .beschreibung p {
        font-size:0.8em;
        line-height:3em;
    }

    .beschreibung h1{
        font-size:0.9em;
    }

    .beschreibung a{
        font-size:1em;
    }


}











