/*
 * I see you found the stylesheet.
 * Some parts of CSS are all right, like controlling the page style.
 */
body {
    font-family: sans-serif;
    margin: auto;
    max-width: 1280px; /* Sparing the widescreen people. */
    background-color: #003057;
    color: #F9F6E5
}

a {
    color: #B3A369;
}

/* Why not hover-color? Oh right, because everything's too complicated now. */
a:hover {
    color: #EAAA00;
}

h1 {
    font-family: serif
}
h2 {
    font-family: serif
}

.navbar {
    background-color: #B3A369;
    color: #F9F6E5;
}

.navbar a {
    color: #003057;
    display: inline-block;
    font-family: sans-serif;
    padding: 10px;
}

.navbar a:hover {
    color: #F9F6E5;
}

/* Really, what was so bad about <center>? */
.footer {    
    align-items: center;
    background-color: #B3A369;
    color: #F9F6E5;
    display: flex;
    justify-content: center;
    padding: 3px;
}

