body {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color:antiquewhite;
}
nav {
  padding:1%;
  margin-bottom: 1%;
}

nav ul {
  list-style-type: none;
  text-align: center;
}

nav li {
  color: white;
  font-size: 1.2em;
  font-family: 'Francois One', sans-serif ;
}
#container {
  width: 100%;
}

#categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 15px;
}

#final {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid gray;
}

p {
  text-align: justify;
  max-width: var(--input-width);
}

#chart {
  max-width: 450px;
  margin: auto;
}
