body {
  font: 16px sans-serif;
  background-color: #639A00;
}

a {
  color: #00B7FF;
}

h1, h2 {
  text-align: center;
  color: white;
}

main {
  margin: auto;
  max-width: 1200px;
}

.disclaimer {
  color: white;
  text-align: center;
}

#charts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.chart-wrapper {
  box-sizing: border-box;
  display: flex;
  background-color: #f8f8f8f8;
  width: calc(400px - 0.5rem);
  flex-direction: column;
  border: 2px inset rgba(0,0,0,0.2);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 0.25rem;
}

.chart-wrapper:hover {
  background-color: #eeeeee;
}

.chart-legend {
  display: flex;
  flex-direction: column;
}

.chart-legend span {
  display: block;
}

.answer-section {
  text-align: center;
}

.answer-section a {
  margin: auto;
  text-decoration: none;
  background: white;
  color: black;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: inline-block;
}

.answer-section a:hover {
  cursor: pointer;
  background: #dddddd;
}

#answer-list {
  border: 2px solid black;
  border-collapse: collapse;
}

#answer-list :is(td,th) {
  padding: 4px;
}

#answer-list tr {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

#answer-list tr:nth-child(even) {
  background-color: #cccccc;
}

#answer-list tr:nth-child(odd) {
  background-color: #dddddd;
}

#answer-list tr:hover {
  background-color: #eeeeee;
}