* {

    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 20px;
}

header {
    margin-bottom: 20px;
}

h1, h2, h3 {
    font-weight: normal;
    margin-bottom: 10px;
}

h1 {
    font-size: 14px;
    text-decoration: underline;
}

h2 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 15px;
}

h3 {
    font-size: 14px;
}

nav {
    margin-bottom: 20px;
}

nav a {
    color: #0000ee;
    text-decoration: underline;
}

nav a:visited {
    color: #551a8b;
}

nav a:hover {
    color: #ff0000;
}

main {
    margin-bottom: 20px;
}

section {
    margin-bottom: 20px;
}

p {
    margin-bottom: 10px;
}

ul {
    padding-left: 40px; /* Restore browser default */
    list-style-type: disc; /* Restore browser default */
}

li {
    margin-bottom: 10px;
    display: list-item; /* Ensure bullets render */
    list-style-type: inherit; /* Inherit from ul */
}

.exceptional {
    color: #0000ee;
    text-decoration: underline;
}

.good {
    color: #008000;
    text-decoration: underline;
}

.resources a {
    color: #0000ee;
    text-decoration: underline;
}

.resources a:visited {
    color: #551a8b;
}

.resources a:hover {
    color: #ff0000;
}

footer {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #000;
}