html {
    background-image: linear-gradient(to bottom, blue 0%, yellow 100%);
}

body {
    font: 100%/1.2 "Open Sans", Arial, Helvetica, sans-serif;
    background: white;
    max-width: 960px;
    min-width: 400px;
    width: 60%;
    margin: 1em auto;
    padding: 1em 30px 1.5em;
    border-radius: 20px;
}

#page-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    font-family: "Times New Roman", Times, serif;
    color: #000000;
    text-shadow: 2px 2px 2px gray;
}

nav {
    text-align: center;
}

nav li {
    margin-bottom: 25px;
}

a.menu-link {
    text-decoration: none;
    background-color: #888888;
    color: black;
    padding: 5px;
    border-style: outset inset inset outset;
    border-width: 2px 2px 2px 2px;
    border-color: #dddddd #333333 #333333 #dddddd;
    box-shadow: 2px 2px 2px black;
}

article > section {
    column-count: 2;
    column-gap: 2em;
    column-rule: 1px solid #333333;
    position: relative;
}

article p {
    line-height: 1.5;
    text-indent: 2em;
    z-index: 20;
    position: relative;
}

footer p {
    text-align: center;
}

#seal {
    position: absolute;
    bottom: 100px;
    right: 2em;
    z-index: 10;
}