* {
  box-sizing: border-box;
}
html {
  font-size: 15px;
  color: skyblue;
}
body {
  font-family: Open-Sans, sans-serif;
  background-color: black;
}
.head {
  border: 2px solid pink;
  width: 45%;
  margin: 40px auto;
  padding: 0.2em 20px;
}
header h1 {
  text-align: center;
  margin: 0 10px;
  letter-spacing: 0.01em;
}
p {
  margin: 0;
  display: flex;
  justify-content: space-between;
}
.divider {
  border-bottom: 2px solid orange;
  margin: 2px 0;
}
.bold {
  font-weight: 800;
}
.large {
  height: 15px;
}
.large, .medium {
  background-color: orange;
  border: 0;
}
.small {
  font-size: 13px;
}
.calories-info {
  display: flex;
  justify-content: space-between;
  align-items : flex-end;
}
.calories-info h2 {
  margin: 0;
}
.left-container p {
  margin: -1px -2px;
  font-size: 40px;
  font-weight: 700;
}
.calories-info span {
  margin: 0px -0px;
  font-size: 40px;
  font-weight: 700;
}
.medium {
  height: 10px;
}
.right {
  justify-content: flex-end;
}
.indent {
  margin-left: 1em;
}
.double-indent {
  margin-left: 2em;
}
.daily-value p:not(.no-divider) {
  border-bottom: 1px solid #888989;
}
.note {
  font-size: 12px;
  margin: 0 auto;
  padding: -10px;
}