body {
    background-color: white;
    color: black;
    font-family: 'Courier New', Courier, monospace;
    padding: 2em;
}

.disclaimer {
    border: 2px solid red;
    padding: 1em;
    margin-bottom: 2em;
}

.search-container {
    margin-bottom: 2em;
}

#search-bar {
    width: 100%;
    padding: 0.5em;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1em;
    box-sizing: border-box;
    border: 1px solid black;
}

header, footer {
    margin-bottom: 2em;
}

nav {
    margin-top: 1em;
}

nav a {
    color: blue;
    text-decoration: none;
    margin-right: 1em;
}

nav a:hover {
    text-decoration: underline;
}

main ul {
    list-style-type: none;
    padding-left: 0;
}

main li {
    padding-left: 2em;
    position: relative;
}

main li::before {
    content: '|—';
    position: absolute;
    left: 0;
}

main > ul > li::before {
    content: '—';
}

main a {
    color: blue;
    text-decoration: none;
}

main a:hover {
    text-decoration: underline;
}
