html, body {
    padding: 0;
    margin: 0;
    color: #141414;
    display: flex;
    flex-direction: column;
    height: 100%;
    font-size: 15px;
    font-family: 'Century Gothic', Arial, 'Arial Unicode MS', Helvetica, Sans-Serif, serif;
}

.content {
    flex: 1 0 auto;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

.header {
    color: #0D0D0D;
    background: #F5F5F5;
    display: table;
    width: 100%;
    table-layout: fixed;
    height: 90px;
    padding-top: 40px;
}

.header-item a {
    font-size: 36px;
    font-weight: bold;
    color: #990033;
    text-decoration: none
}

.header-row {
    display: table-row;
}

.header-item {
    width: 50%;
    display: table-cell;
    text-align: center;
}

.header-bottom {
    width: 100%;
}

.header-bottom img {
    width: 100%;
}

.text {
    padding: 0 10px;
}

.text a {
    color: #141414;
}

.text .highlighted {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

ul li {
    margin: 2px 0;
}

footer {
    flex-shrink: 0;
    width: 100%;
    color: #545454;
    text-align: center;
    font-size: 10px;
    font-style: italic;
}

.separator {
    width: 100%;
    height: 10px;
    background-image: url('footer_separator.jpg');
    background-repeat: repeat-x;
    margin-top: 10px;
}

@media only screen and (max-width: 820px) {
    .text p {
        text-align: center;
    }

    .header-item {
        display: block;
        width: 100%;
    }
}