:root {
  --color-accent: orange;
  --color-lowaccent: #999;
  --font-graph: Arial, Helvetica;
  --font-text: 'Source Sans Pro', arial, helvetica, sans-serif;
  --flex-gap: 0.5rem;
}

body {
  font-family: var(--font-text);
  padding-bottom: 50px;
}

h3 {
  margin-top: 50px;
}

li {
  margin: 25px 50px 0 0;
}

table {
  width: 1400px;
  margin: 0 50px 0 50px;
}

td {
  width: 50%;
  vertical-align: top;
  padding-right: 60px;
}

aside {
  font-size: 80%;
}

button.showButton {
  position: absolute;
  z-index: 10;
  right: 2rem;
  top: 2rem;
  border-radius: 50%;
  padding: 1rem;
  aspect-ratio: 1;
  color: white;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease-in-out;
}

button.showButton svg {
  width: 1.5rem;
  height: 1.5rem;
}

button.showButton:hover {
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.06);
  opacity: 0.8;
}
