header details{
    display: none;
    /*position: relative;*/
}
header nav{
    display: flex;
    margin: 0 auto;
    height: fit-content;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    width: 100%;


}
header .desktop{
    justify-content: space-between;
    display: flex;
    width: 75%;
    height: fit-content;
    align-items: center;
    gap: 32px;
}
header form {
    margin: 0;
    flex-grow: 1;
    max-width: 400px;
    display: flex;
}

header .desktop button{
    width: 7em;
    height: 48px;
}

header form input[type=submit]{
    display: none;
}
header form label{
    cursor: pointer;
    display: block;
    width: 38px;
    height: 38px;
    position: relative;
    right: 1px;
    top: 5px;
}

header form label:hover rect,
header form label:focus rect{
    fill: #c5895c;
}

header img.logo{
    display: block;
    aspect-ratio: 2;
    flex-grow: 1;
    height: 50px;
}

header input#content{
    border-color: var(--accent-color);
    /*color: rgba(var(--accent-color), 1);*/
    height: 48px;
    border-radius: 24px;
    font-size: 16px;
    margin: 0 -42px 0 0;
    padding: .3em 46px .3em 1em;


}
header summary{
    cursor: pointer;
}

header .profile{
    height: 32px;
    display: block;
}
header a{
    display: block;
    height: fit-content;
}

header{
    height: 80px;
    margin-bottom: 20px;
    background-color: var(--dark-color);
    align-items: center;
    display: flex;
    padding: 0 10%;

}
header details > summary:first-of-type {
    display: block;
}

header details button.outlined{
    width: 100%;
    height: 48px;
}

header .content{
    position: absolute;
    box-sizing: border-box;
    left: 0;
    top: 80px;
    width: 100%;
    background-color: var(--dark-color);
    padding: 0 5% 24px 5%;
    box-shadow: #1F233C 0 5px 10px;
}
header .content>ul{
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}



@media (max-width: 600px) {
    header {
        padding: 0 40px;
    }
    header details{
        display: block;
    }
    header form {
        width: 100%;
        max-width: none;
    }

    header .desktop{
        display: none;
    }
}
@media (max-width: 1100px){

}
@media (max-width: 500px){}
