.header {
    background-color: #2f3554;
    width: 100vw;
    height: 5vh;
    min-height: 50px;
    border-style: solid;
    border-width: 0 0 2px 0;
    border-color: #2f4361;
    font-size: 1.25em;
}

.nav-bar {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 4%;
}

.header a {
    color: white;
    text-decoration: none;
    text-shadow: 1px 1px 8px transparent;
    transition: text-shadow 0.2s ease;
}

.header a:hover {
    text-decoration: none;
    text-shadow: 1px 1px 8px white;
}

.header-member {
    width: 5%;
    min-width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-member a {
    display: block;
}
