body {
	background-color: lightgrey;
}

.hidden {
  display: none;
}

.tile.is-parent {
  border: 1px solid lightgrey;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  color: #f2f2f2;
  text-align: center;
  padding: 14px 50px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.bigfont {
	font-size: 40px;
}

#chartContainer {
	margin-bottom: 20px;
}

#total {
	margin-bottom: 70px;
}

#nutricount {
	margin-bottom: 10px;
}

#calcButton {
	margin-bottom: 20px;
}

hr {
	margin-top: 0px;
}

/* Pie chart for percentages of different food categories */
#piechart {
	margin-left: 225px;
	margin-top: 30px;
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-image: conic-gradient(black 100%);
  display: grid;
  justify-content: center;
  align-items: center;
}