header{
    top: 0;
    position: sticky;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    width: 100%;
    transition: 100ms linear;
    -webkit-transition: 100ms linear;
    -moz-transition: 100ms linear;
    -ms-transition: 100ms linear;
    -o-transition: 100ms linear;
}
#header{

    z-index: 1;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    width: 100%;
    max-width: 1300px;
    justify-content: space-between;
    align-items: center;
    padding:15px 50px;

}
.logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    height: 30px;
}
.logo img{height: 30px;}
.logo a{font-weight: bold; font-size: 22px;}
.headerBlur{backdrop-filter: blur(15px);-webkit-backdrop-filter: blur(15px);border-bottom: 1px grey solid;}

#headerMenu{display: none;}

@media (min-width:1024px) and (max-width:1200px){


    #header{
        justify-content: space-between;
        justify-items: center;
        display: grid;
        grid-template-columns: repeat(2, 150px);
        grid-template-rows: repeat(2, auto);
        grid-row-gap: 10px;
    }
    #header .logo{grid-area: 1 / 1 / 2 / 2;}
    #header .button{grid-area: 1 / 2 / 2 / 3;}
    #header nav{grid-area: 2 / 1 / 3 / 3; }

}

@media (max-width: 1024px){
    #headerMenu{
        position: sticky;
        stroke: black;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        margin-right: 10px;
        height: 100%;
        aspect-ratio: 1;
    }
    .burger-line{
        width: 26px;
        stroke-width: 3px;
        stroke-linecap: round;
    }
}

@media (max-width: 570px){

    #header{
        padding: 15px 20px;
    }

}