:root {
    --bg-color: black;
    --brand-color: red;
    --text-on-brand: white;
}

body {
    width: 100%;
    background-color: var(--bg-color);
    color: white;
    text-align: center;
    font-family: sans-serif;
}

.top-header {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--brand-color);
    color: var(--text-on-brand);
}

img {
    height:  200px;
    width: 500px;
}

.wade-logo {
    width: 64px;
    height: 64px;
}


a {
    text-decoration:  none;
    font-size: 18pt;
    padding-left: 10px;
}
li {
    list-style:  none;
}

span {
    font-style: italic;
    font-weight: bold;
}

.top-header a {
    color: white;
    margin: 5px;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    padding-left: 10px;
    padding: 10px;
}

.top-header a:hover {
    color: black;
    background-color: white;
}