:root {
    --width: 60%;
    --max-width: 800px;
}

a {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 9pt;
    color: #396bbd;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    width: var(--width);
    max-width: var(--max-width);

    background-image: url("/resources/durham_pics.gif");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    background-color: #396BBD;
}

header div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

header div img {
    padding: 10px;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;

    width: var(--width);
    max-width: var(--max-width);
}

nav a {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 10px;
    width: 15%;
    text-align: center;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 9pt;
    text-decoration: None;
    font-weight: bold;
    text-transform: uppercase;

    transition: all 1250ms cubic-bezier(0.25, 1, 0.25, 1);
}

nav a:hover {
    background-color: #e8f2ff;
    text-decoration: none;
}

main {
    width: var(--width);
    max-width: var(--max-width);
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--width);
    max-width: var(--max-width);

    text-align: center;
}

footer p {
    padding: 0;
    margin: 1px;
}

.normal {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 9pt;
    color: #000000;
    line-height: 14pt
}

.small {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 8pt
}

.smallLink {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 8pt;
    color: #396bbd
}