@charset "UTF-8";

  body {
    background-color: #efefef;
  }

  #container {
  display: grid;
  box-sizing: border-box;
  padding: 30px;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(8, 1fr) 1.5fr;
  grid-gap: 20px;
  width: 800px;
  height: 800px;
  margin: 100px auto 25px auto;
  background-color: #fff;
}

#container>* {
  display: flex;
  font-family: Helvetica, sans-serif;
  font-size: 12px;
  line-height: 12px;
  color: #333;
  flex-direction: column;
  background-color: #ff0;
}

#container>#brand {
  grid-column: 1 / 4;
  grid-row: 1;
  background-color: #ffffff;
  padding: 5px;
  font-size: 12px;
  justify-content: flex-start;
  align-items: flex-start;
}

#container>#brand .brand-name {
  font-weight: bold;
}

#container>#brand .brand-light {
  font-weight: normal;
}

#container>#brand .brand-italic {
  font-style: italic;
}

#container>#brand .brand-medium {
  font-weight: 700;
  white-space: nowrap;
}

#container>#weight {
  grid-column: 8 / 11;
  grid-row: 1;
  background-color: #ffffff;
  padding: 5px;
  font-size: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: right;
}

#container>#nutrition-facts {
  grid-column: 1 / 5;
  grid-row: 2 / 6;
  background-color: #ffffff;
  padding: 5px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  line-height: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#container>#nutrition-facts .fact-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: flex-start;
}

#container>#nutrition-facts .fact-row.header {
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
  margin-bottom: 2px;
}

#container>#nutrition-facts .fact-row.footer {
  font-size: 12px;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid #ccc;
}

#container>#nutrition-facts .fact-label {
  text-align: left;
}

#container>#nutrition-facts .fact-value {
  text-align: right;
  min-width: 25px;
}

#container>#nutrition-facts .fact-row:nth-child(3) .fact-label {
  font-weight: bold;
}

#container>#nutrition-facts .fact-row:nth-child(5) .fact-label {
  font-weight: bold;
}

#container>#nutrition-facts .fact-row:nth-child(7) .fact-label {
  font-weight: bold;
}

#container>#nutrition-facts .fact-row:nth-child(12) .fact-label {
  font-weight: bold;
}

#container>#imported {
  grid-column: 8 / 11;
  grid-row: 4 / 6;
  background-color: #ffffff;
  padding: 8px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  line-height: 11px;
  overflow: hidden;
  text-align: left;
}

#container>#ingredients {
  grid-column: 4 / 11;
  grid-row: 6 / 8;
  background-color: #ffffff;
  padding: 8px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  line-height: 12px;
  text-align: left;
}

#container>#french-ingredients {
  grid-column: 4 / 11;
  grid-row: 8 / 10;
  background-color: #ffffff;
  padding: 8px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  line-height: 12px;
  text-align: left;
}

#container>#questions {
  grid-column: 1 / 4;
  grid-row: 6 / 8;
  background-color: #ffffff;
  padding: 8px;
  font-size: 12px;
  font-family: Arial, sans-serif;
  line-height: 12px;
  text-align: left;
}

#container>#imported strong {
  font-weight: bold;
}

#container>#imported em {
  font-style: italic;
  font-weight: normal;
}

#container>#ingredients strong {
  font-weight: bold;
}

#container>#ingredients em {
  font-style: italic;
  font-weight: bold;
}

#container>#french-ingredients strong {
  font-weight: bold;
}

#container>#french-ingredients em {
  font-style: italic;
  font-weight: bold;
}

#container>#questions em {
  font-style: italic;
  font-weight: normal;
}

#info {
  font-family: Helvetica, sans-serif;
  font-size: 12px;
  line-height: 15px;
  color: #555;
  width: 800px;
  margin: 0 auto 100px auto;
}
