body {
    font-family: Arial, sans-serif;
    font-size: 12pt;
    background-color: yellow;
}

div#container {
    width: 80%;
    margin: 30px auto 30px auto;
    border: 2px solid black;
    background-color: white;
    min-width: 900px;
}

header {
    background-color: #006699;
    border-bottom: 2px solid black;
    height: 180px;

}

footer {
    background-color: #0099cc;
    border-top: 2px solid black;
    font-size: 8pt;
    text-align: center;
    color: white;
    font-style: italic;
}

nav {
    background-color: #006600;
    border-right: 2px solid black;
    width: 150px;
}

section#information {
    background-color: #9999cc;
    border-left: 2px solid black;
    width: 250px;
    font-size: 10pt;
    text-align: justify;
}

header,
footer,
nav,
section {
    margin: 0;
    padding: 10px 20px 10px 20px;
} 

div#content {
    display: table;
    width: 100%;
}

nav,
section#main,
section#information {
    display: table-cell;
}

header h1 {
    font-size: 60px;
    color: white;
    text-align: right;
    text-shadow: 2px 2px 4px black;
    margin: 0;
}

section#information h2 {
    font-size: 1.5em; 
    color: #003366;
    text-align: center;
}

section#main img {
    display: block;
    margin: 10px auto 10px auto;
    padding: 7px;
    background-color: white;
    border: 1px solid black;
    box-shadow: 2px 4px 8px black;
}