#header > h1 > div {
  font-size: 1.6rem;
  margin-top: 0px;
  margin-left: 220px;
}

h1 {
  font-weight: 300;
  font-size: 2.5rem;  
}

h2 {
  font-weight: 300;
  font-size: 2rem;
  margin-top: 100px;
  text-align: center;  
}

a {
  text-decoration-line: underline;
  color: white;
}

p {
	font-size: 1.2rem;
}

div#notheader {
  grid-area: c;
  margin-bottom: 32px;
  max-width: 800px;
}

ul {
  font-size: 1.2rem;
}
  
div#header {
	grid-area: x;
	margin: auto;
}

html {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-size: 20px;  
}

body {
  background-color: #31466a;
  font-family: system-ui;
  font-weight: 300;
  color: white;
  margin: 0;
  flex-grow: 1;
}

#top-grid {
  margin: 2em;
}

@media (min-width: 993px) {
  div#top-grid {
    display: grid;
    grid-template:
      "x x x x"
      ". c c .";
      grid-template-rows: auto auto;
    grid-template-columns: 1fr auto auto 1fr;
    grid-gap: 4px;
  }
}

@media (max-width: 992px) {

  h1 {
    font-size: 40px;
    margin: auto;
    width: fit-content;
    width: -moz-fit-content;
  }

  #header > h1 > div {
    font-size: 20px;
    margin-top: 0px;
    margin-left: 60px;
  }

  h2 {
    margin-top: 32px;
    font-size: 28px;
  }

  p {
    font-size: 18px;
  }

  ul {
    margin-left: -8px;
    font-size: 18px;
  }

  ul > li {    
    margin-top: 8px;
  }

  div#notheader {
    max-width: 992;
  }
}
