#header-outer{
    display: flex;
    flex-direction: column;
}
#header{
    display: flex;
    flex: 1;
    width: 100%;
    flex-direction: row;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    background-color: rgba(0, 0, 0, 0.9);
    min-height: 4em;
    position: fixed;
    color: white;
    z-index: 99;
}
#page-nav{
    flex: 1;
    min-height: 5em;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin-top: 2.5em;
    padding: 2.5%;
    padding-bottom: 1.25%;
}
#current-page{
    font-size: 1.5em;
    font-family: verveShadow;
    color: white;
}
#logo-area{
    flex-basis: 20%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    padding: 0.1em;
    padding-left: 1em;
    min-width: 25em;
}
#header-logo-text{
    flex: 1;
    display: flex;
    flex-direction: row;
    font-family: verve;
    font-size: 1.75em;
}
#nav-area{
    display: flex;
    flex-grow: 1;
    flex-direction: row;
    align-items: flex-end;
    padding: 0 2.5% 1% 0;
    justify-content: flex-end;
}
#nav-area a{
    text-decoration: none;
    font-size: 1.25em;
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 2.5%;
}
#nav-area a:hover{
    cursor: pointer;
    transition: ease-in-out 0.125s;
}
#nav-area a.checked{
	color:rgb(33, 229, 255);

}
#nav-area a.checked:hover{
    cursor: default;
}