/* Universal Style */
body {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 200;
}
a {
  text-decoration: none;
}

/* Navigation */

nav {
  text-align: center;
}

nav span {
  display: block;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 0px;
  margin-right: 0px;
}

nav a {
  color: #666666;
}
/* Content Container */

.content {
  width: 100%;
  height: 500px;
  margin: 10px auto;
  overflow: scroll;
}

/* Content Header */

.header {
  background-image: url("https://images.unsplash.com/photo-1571997478779-2adcbbe9ab2f?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=774&q=80");
  background-position: center;
  background-size: cover;
  height: 320px;
}

.header h1 {
  background-color: brown;
  color: antiquewhite;
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 40px;
  width: 68%;
  padding: 20px;
  margin: 0 auto;
}

/* Content Body */

.content .body {
  width: 90%;
  margin: 0 auto;
}

.body p {
  color: chocolate;
  font-weight: 100;
  line-height: 34px;
  width: 90%;
  margin-top: 18px;
}

/* Content Button */

.button {
  border-radius: 4px;
  color: brown;
  display: block;
  font-weight: 700;
  width: 200px;
  padding: 20px;
  margin: 40px auto;
  border: 1px solid brown;
}

.button:hover {
  background-color: brown;
  border: 1px solid brown;
  color: beige;
}

/* Content Nutrition */
ul .nutrition {
  padding: 20px;
}

ul .nutrition li {
  display: inline-block;
  background-color: brown;
  list-style: none;
  width: 200px;
  padding: 10px 20px;
  margin: 3px;
}
.nutrition .category {
  color: brown;
  font-weight: 100;
  letter-spacing: 2px;
  display: block;
}

.nutrition .value {
  color: brown;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
}
.calories,
.fat,
.carbs,
.protein,
.sugars,
.fiber,
.sodium {
  border-radius: 4px;
  color: brown;
  display: block;
  font-weight: 700;
  padding: 20px;
  width: 200px;
  margin: 40px auto;
  border: 1px solid brown;
}
