header {
    font-family: "Gravitas One", serif;
    font-weight: 200;
    font-style: normal;
    padding:
        var(--size-spacing-medium);
    background-color: var(--color-background-header, #00d0c2);
}

main {
  margin: 4rem auto;
  max-width: 900px; /* optional: centers and limits width */
}

body {
    background-color: var(--color-background-page);
    color: var(--color-text);
    margin: 1em;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: medium;
    font-variation-settings:
        "wdth" 100;
}

body > :not(header) {
    margin:
        var(--size-spacing-medium);
}

svg.icon {
    display: inline;
    height: 2em;
    width: 2em;
    vertical-align: top;
    fill: currentColor;
}

.page {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.page>header {
    flex-basis: min-content;
}

.page>section {
    flex-basis: 100%;
    overflow: auto;
    margin: 0;
    padding: 0.5rem;
}

.nav-list {
  display: flex;
  flex-direction: row;
  gap: 1.5em;           /* space between items */
  list-style: none;
  padding: 0;
  margin: 1em 0;
  border: 2px solid red;
}

.nav-list li {
  /* Optional: remove default list item spacing */
  margin: 0;
}