/* globals */
html {
    color: #eeeeee;
    font-size: 2.5vh;
}

* {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: grid;
    grid-template-areas: 'header' 'main' 'footer';
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
}

header {
    background-color: #1C0000;
}

main {
    height: 100%;
    background-color: #170000;
}

footer {
    font-size: 2vh;
    background-color: #0C0000;
}

.hidden-title {
    position: absolute;
    width: 1px;
    height: 1px;
    left: -10000px;
}

/* nav bar */ 
header nav ul {
    display: table;
    margin: 0 auto;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    transition: background .4s;
    display: block;
    padding: 1vh 2vh;
    color: inherit;
    text-decoration: none;
}

header nav ul li a:hover {
    background-color: #2C0000;
}

header nav ul li#current-page a {
    border: .2vh;
    border-style: none none solid none;
}

/* body defaults */
main {
    text-align: center;
}

main section h2 {
    margin-top: 2em;
    margin-bottom: .3em;
}

/* footer styling */
footer ul li {
    float: left;
    display: inline-block;
}

footer ul li:last-child {
    float: right;
}

footer ul li a, p {
    display: block;
    color: inherit;
    padding: 0.3vw;
}

footer ul li a {
    text-decoration: underline;
}
