header{
    padding: 120px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.header-text{
    width: 60px;
}
.Section_Logo{
    padding: 5px 5px;
    display: flex;
    justify-content: center;
    align-items: center;

}
#header h1{
    line-height: 30px;
}
.Umarow_Text{
    font-size: 40px;
}


.circle{
    height: 300px;
    width: 200px;


    max-width: 80vw;
    max-height: 80vw;

    overflow: hidden;

    border: 10px solid var(--main-brand-color);

    display: flex;
    justify-content: center;
    align-items: center;
}
.circle img{
    width: 75%;
}
nav{
    margin-bottom: 120px;
}
nav ul{
    list-style: none;
    display: flex;
    gap:20px;
}
nav a{
    color: white;
    text-decoration: none;
    position: relative;
    padding: 10px;
    font-size: 25px;
}
nav a:hover{
    color: var(--secondary-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;
    width: 30px;
}
label[for="toggle_button"]span{
    font-size: 40px;

}

/*Website auf Handy anpassen */
@media(max-width: 800px){
    nav{
        position: fixed;
        top: 0;
        left: 0;
        background: var(--secondary-color);
        padding: 15px;
        border-radius: 0 0 15px 0;
        
    }
    nav ul{
        display: none;
        flex-direction: column;
    }
    #toggle_button:checked ~ ul{
        display: flex;
    }
    label[for="toggle_button"]{
        display: block;
    }
}
