: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%;
}


.auswahlbildlinks {
    float:left;
    width:36%;
    margin-left:10%;
    margin-top:3%;
    border:3px inset darkorange;
    border-radius:10px;
    background-color: #373840;
}

.auswahlbildrechts {
    float:left;
    width:36%;
    margin-left:5%;
    margin-top:3%;
    margin-right:10%;
    border:3px inset darkorange;
    border-radius:10px;
    background-color: #373840;
}


.auswahlbildrechts:hover, .auswahlbildlinks:hover {
    background-color:#555762;
}


@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;
    }

    .auswahlbildlinks, .auswahlbildrechts {
        width:90%;
        margin-left:5%;
    }

    
    #toggle_button:checked ~ ul {
        display:block;
    }
}











