body {
  background: #222;
  margin: 0;
  font-family: "Lato";
}

.app {
  display: flex;
  justify-content: space-between;
}

.navbar {
  width: 300px;
  background: #333;
  min-height: 100vh;
  position: sticky;

  display: flex;
  align-items: center;
  justify-content: baseline;
  flex-direction: column;

  padding-top: 24px;
  box-sizing: border-box;

  color: white;
}

.navbar h1 {
  font-style: italic;
  margin: 0;
}

.navbar p a {
  color: white;
}

.navbar > a {
  display: block;
  width: 300px;
  height: 42px;
  background-color: #252525;
  box-shadow: 0 -3px 6px #444 inset;
  text-align: center;
  font-size: large;
  font-family: "Lato";
  color: white;
  text-decoration: none;
  line-height: 42px;
}

.navbar > a:hover {
  background-color: #333;
}

.navbar > a.selected {
  background-color: #eee;
  color: black;
}

.content {
  width: 100%;
  padding: 4rem;
  height: fit-content;
  color: white;
}

table {
  border-collapse: collapse;
}
th, td {
  border: 1px solid white;
  padding: 6px;
  padding-left: 18px;
  padding-right: 18px;
  max-width: 300px;
  font-weight: 400;
}

tr:nth-child(even) {
  background-color: #fff1;
}

th {
  background-color: #fff;
  color: black;
  border: 1px solid black;
}

th.desc {
  text-align: left;
}