* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 13.5px;
    line-height: 1.125;
    background-color: yellow;
}

.container {
    display: flex;
    flex-direction: column;
    align-self: center;
    background-color: mediumaquamarine;
}

.header {
    align-self: top;
    background-color: lightgreen;
}

.nav {
    align-self: left;
    background-color: lightyellow;
}

.navbar {
    align-self: left;
    background-color: gold;
}

.main {
    align-self: center;
    background-color: darkseagreen;
}

.footer {
    align-self: bottom;
    background-color: green;
    font-size: 3em;
}

a:link {
  color: #82698e;
  font-size: 3.75em;
}

h3 {
  font-size: 5.25em;
}

h6 {
  font-size: 4.5em;
}

p {
  font-size: 2.25em;
}

/*.main ol li {

}*/