@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body {
    /*font-family: 'Courier New', Courier, monospace;*/
    font-family: 'Quicksand', sans-serif;
    margin: 20px;
    font-size: 100%;
    line-height: 1.5;
}

header {
    background-color: rgb(200, 210, 170);
    min-height: 50vh;
}

h1, h2 {
    /* outline: 1px solid grey; */
    text-align: center;
}

ul.itemize {
    list-style: none;
    outline: 1px dotted red;
}

/* Center navigation: parent centers inline-block children */
ul.nav {
    text-align: center; /* centers inline-block list items */
    padding: 0;
    margin: 1em 0; /* spacing around nav */
}

header ul.nav li {
    display: inline-block; /* allows margins and centering */
    margin: 0 1.25em; /* horizontal spacing between items */
}

ul.nav a {
    font-weight: bold;
    text-decoration: none;
    color: forestgreen;
}

ul.nav a:hover {
    text-decoration: underline;
    color: goldenrod;
}