/* Navigation Header Bar Styles*/
header {
    color: white;
    background-color: black;
    border-bottom: 40px solid #381666;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 10px 20px 0;
    height: 58px;
}
header nav ul {
    margin: 32px 0 0;
    padding: 0;
    display: flex;
    list-style-type: none;
    column-gap: 1em;
}
.branding {
    width: 8em;
    text-align: center;
}

header nav a { 
    background-size: cover;
    width: 8em;
    display: inline-block;
    padding: 4px 10px;
    background-repeat: no-repeat;
    text-align: center;
    background-image: url(../images/Dark_purple_tab.svg);
}

header nav a.current, header nav a:hover {
    background-image: url(../images/purple_tab.svg);
}

header nav a:link, header nav a:visited { color: rgb(174, 150, 194); }
header nav a.current:link, header nav a.current:visited { color:rgb(227, 197, 250); }

header nav a:focus, header nav a:hover, header nav a:active { color: rgb(227, 197, 250); }

header nav a, header nav a.current {
    text-decoration: none;
}

/* main body styles */
html {
    min-width: 850px;
}
body {
    font-family: Helvetica, sans-serif;
    margin: 0;
}
h1, h2, h3, h4 {
    color: #381666;
}

main {
    /* border-top: 6px solid #2D1252;*/
    line-height: 1.5em;
    padding: 40px;
    margin: 0;
    min-height: 255px;
}
p.more {
    text-transform: uppercase;
    font-size: .7em;
}
p.more a:link, p.more a:visited { color: rgb(124, 19, 165); }
p.more a:focus, p.more a:hover, p.more a:active { color: #c133f9; }
p.more a {
    text-decoration: none;
}
h3.more a:link, h3.more a:visited { color: rgb(124, 19, 165); }
h3.more a:focus, h3.more a:hover, h3.more a:active { color: #c133f9; }

/* Footer bar */
footer {
    font-family: Helvetica, sans-serif;
    background-color: black;
    color: rgb(227, 197, 250);
    text-align: center;
    font-size: .7em;
    padding: 1em;
    border-style: solid;
    border-width: 6px 0 0;
    border-color: rgb(227, 197, 250);
    height: 180px;
}