body {
	max-width: 80rem;
	font-family: sans-serif;
	font-size: 1.2rem;
  margin: auto;
  display: grid;
  grid-template-areas:
    "menu content"
    "menu footer";
  grid-template-columns: 20% 80%;
  gap: 0 0.5rem;
  line-height: 1.5
}

article {
  grid-area: content
}


nav {
  top: 4.5rem;
  grid-area: menu;
  font-size: 1rem;
  align-self: start;
  position: sticky;
  line-height: 1
}

nav > h1 {
  font-size: 1.1rem;
}

nav > h2 {
  font-size: 1rem;
}

nav > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

footer {
  grid-area: footer;
  font-size: 0.8rem;
  line-height: 1rem;
}

:not(pre) > code, kbd {
	background-color: #2b2b2b;
  color: #f8f8f2;
  padding: 0.1rem;
  font-size: 1.0rem;
}

code {
  font-size: 1.1rem;
  line-height: 1.3;
}

pre > code {
  word-break: break-all;
}

table, th, td {
	width: 40rem;
	border: 1px solid;
	padding: 0.3rem;
}


td:nth-child(2n+1) {
	font-family: monospace;
	widht: 30%;
}

table {
	border-collapse: collapse;
}

li {
	padding-top: 0.2rem;
	padding-bottom: 0.2rem;
  line-height: 1.1;
}

img {
	width: 100%;
  height: auto;
}

p {
  text-align: justify;
  text-justify: inter-word;
}


