header{
    padding-top: 50px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 5px;
    position:fixed !important;
    position:absolute;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 50px;
    background-color: white;
    width:100%;
}
.header_text{
    flex: 20%;
    align-items: center;
}
.Logo{
    align-items: end;
    flex: 10%;
}
.Pic{
    background-color: black;
    border: none;
    color: white;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    font-size: 16px;
    border-radius: 8px;
}
nav{
    margin-bottom: 120px;
}
nav ul{
    list-style: none;
    display: flex;
    gap: 20px;
}
nav a{
    color: rgb(0, 0, 0);
    text-decoration: none;
    position: relative;
    padding: 3px;
}
nav a:hover{
    color: var(--light-secondary-color);
}
nav a::after{
    content: '';
    height: 2px;
    width: 0%;
    background: var(--light-secondary-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){
    header{
        background-color: rgba(255, 255, 255, 0);
    }
    nav{
        position: absolute;
        top: 0;
        left: 0;
        background:rgb(189, 189, 189);
        padding: 5px;
        border-radius: 0 0 25px 0;
    }
    nav ul{
        display: none;
        flex-direction: column;
    }
    .button{
        display: none;
    }
    #toggle_button:checked ~ ul{
        display:flex;
    }
    label[for="toggle_button"]{
        display: block;
    }
    .Logo{
        display: none;
    }
}