body {
  height: auto;
  width: auto;
  max-width: 2000px;
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-columns: auto auto auto;
  background: #101e4d;
  color: #FFFFFF;
  font-family: 'Jost', sans-serif;
  text-align: center;
  padding: 0;
  margin: auto;
  box-sizing: border-box;
}

#header {
  width: 100%;
  height: 200px;
  background: #2a2b6d;
  border-radius: 20px;
  border: solid;
  grid-column: 1 / span 3;
}

#leftnav {
  height: auto;
  width: auto;
  flex-direction: column;
  background: #2a2b6d;
  border-radius: 20px;
  border: solid;
  grid-row-start: 2;
  grid-column: 1 / span 1;
}

#mid-content {
  height: auto;
  width: auto;
  background: #2a2b6d;
  border-radius: 20px;
  border: solid;
  grid-row-start: 2;
  grid-column: 2 / span 2;
}

#footer {
  width: 100%;
  height: 20px;
  background: #2a2b6d;
  border-radius: 20px;
  border: solid;
  grid-row-start: 3;
  grid-column: 1 / span 3;
}