header {
    display: flex;
    height: 4rem;
    min-height:fit-content;
    width: 100%;
    max-width: 100%;

    position: relative;

    flex-direction: row;
    justify-content: space-around;
    background-color: var(--background);
    border: 2px solid var(--primary);
}

header > a {
    max-height: fit-content;
    margin: auto 0;
}

header > a > img {
    width: 100%;
    min-width:32px;
    height: auto;
}

.banner {
    margin: auto 5px;
    color: var(--text);
    width:100%;
    flex-shrink:1;
    text-align:center;
}

.banner {
    font-size: 250%;
    background: linear-gradient(45deg, var(--dark_primary), var(--text));
    background-clip: text;
    color: transparent;
    font-weight: bold;
    margin: auto 0;
}

header nav {
    height: auto;
    display: flex;
    font-size: 115%;
    min-width: fit-content;
    justify-content: space-around;
}

header ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    align-content: center;
    height: 100%;
    /* gap: 0 clamp(0, .5em, .5em); */
}

header ul li {
    min-width: fit-content;
    padding: 0;
    height: 100%;
}

header ul li a {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 0 .5em;
    align-content: center;
    text-align: center;
    height: 100%;   
    width: 100%;
}

header ul li a:hover, a:focus {
    text-decoration:underline;
    box-shadow: 0px 0px 4px var(--accent);
}

/* Things start to look bad around 900px. */
/* apply styles to put links in a hamburger menu */
@media screen and (max-width:1000px){
 .icon {
    display: inline;
 }
    
}