nav {
    all: revert;
    box-sizing: border-box;
    
    width: 100%;
    display: grid;
    grid-template-areas: "a b" "c c";
    min-height: 2.5rem;
   
    
    /*flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;*/
}

#other {
    justify-self: end;
    align-self: center;
}

form {
    all: revert;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#filter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#filter li {
    list-style: none;
    margin: 1rem 0 0 0;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: .5ch;
    font-size: small;
}

#logo {
    font-size: 24pt;
    white-space: nowrap;
    text-decoration: none;
    color: #0e0472;
}