header{
    padding: 20px 20px; /*Abstand von oben und links*/
    display: flex;
    justify-content: center;
     align-items: center;
    
     gap: 20px; /*Abstand zwischen Hauptcontainern im header*/
    flex-wrap: wrap;
}
.header_text{
    width: 1200px;
    text-align: left;
    line-height: 30%;
    
 }

.circle{
    height: 400px;
    width: 400px;

max-height: 70vw;
max-width: 70vw;

    overflow: hidden;
    border-radius: 50%;
    border: 10px solid var(--main-brand-color);

    display: flex;              /*Bild im Kreis zentrieren*/
    justify-content: center;
    align-items: center;
}
.circle img{
    height: 100%;  /*Bild im Kreis auf 100 Prozent höhe (Querformat), je nach quer oder hochformat anpassen*/
}
nav{
    margin-bottom: 30px;
}
nav ul{
    list-style: none;
    display: flex;
    gap: 25px;   /*Abstand Schrift navi leiste*/
}
nav a{
    color: var(--secondary-text-color);
    text-decoration: none;
    position: relative;
    padding: 3px;
   
}
nav a:hover{
    color: var(--text-color);
}
nav a::after{
    content: '';
    height: 2px;
    width: 0%;
    background: var(--main-brand-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 150ms ease-in-out;
}



nav a:hover::after{
    width: 100%;
}
#toggle_button{
    display:none;
}
label[for="toggle_button"] {
    display: none;
}
label[for="toggle_button"] span{
    font-size: 40px;
}

@media(max-width: 800px){     /*bei kleineren Bildschirmen die Navigationsleiste klickbar machen*/
    nav{
    position: fixed;   /*Navi-Icon oben in die Ecke*/
    top: 0;
    left: 0;  
    background: var(--secondary-color);
    padding: 10px;   /*Abstand Text navi leiste von links*/
    border-radius: 0 0 25px 0;
    }
    nav ul{
        display: none;          /*bei kleinen Bildschirmen die Links nicht anzeigen*    display: inline;   */
        flex-direction: column;   /*Navi-Leiste untereinander*/
    }
    #toggle_button:checked ~ ul{      /*Display none oder flex, bei klick ein oder ausschalten*/
        display: flex;
    }
    label[for="toggle_button"] {
        display: block;
    }
    .header_text{
        padding: 10px ; /*Abstand von oben und links*/
        display: flex;
        justify-content: center;
        gap: 20px; /*Abstand zwischen Hauptcontainern im header*/
        flex-wrap: wrap;
        line-height: 30%;
    }

    h1{
            font-size: 30px; /*Gönn dir Fass*/
            line-height: 100%;
            text-align: center;
            color: var(--main-brand-color);
          
        }


            h2{
            font-size: 20px; /*Zur Ausstattung gehören*/
            line-height: 100%;
            text-align: left;
            color: var(--main-brand-color);
          
        }
      /*  font-size: 4vw;*/
      
    

}


           
    

