body {
    background-color: hotpink;
    font-family: verdana;
    color: #234;

}

h1 {
    text-align: center;
    border-top: 4px solid #234;
    border-bottom: 4px solid #234;
    padding: 16px;
    margin-bottom: 24px;
}

nav {
    display: flex;
    gap: 12px;
    flex-flow: row wrap;
    justify-content: center;
}

nav div {
    border: 2px solid #234;
    padding: 8px;
    flex: 0 0 30%;
    box-shadow: 3px 2px 2px hotpink;
}

nav div:hover {
    background-color: #EEE;
}

nav div h2 {
    font-size: 14pt;
    text-align: center;
}

nav div a {
    color: #400;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    padding: 4px 8px;
}

nav div a:hover {
    color: orangered;
    text-decoration: underline;
}

footer {
    border-top: 4px solid #234;
    margin-top: 100px;
    padding-top: 8px;
    font-size: 11pt;
    color: #400;
}

li {
    margin: 12px 0;
    list-style: square;
}