:root {
  --paper: #ededed;
  --ink: #1f1f1f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #dcdcdc;
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
}

.canvas {
  position: relative;
  width: 768px;
  height: 800px;
  background: var(--paper);
  overflow: hidden;
}

.canvas section {
  position: absolute;
  font-size: 17px;
  line-height: 1.1;
}

.canvas p {
  margin: 0;
}

.italic {
  font-style: italic;
}

.normal {
  font-style: normal;
}

.heading {
  margin-bottom: 12px;
}

.name {
  font-size: 52px;
  line-height: 1;
}

.spacer {
  height: 14px;
}

.center-text {
  text-align: center;
}

.brand {
  top: 110px;
  left: 44px;
  width: 230px;
  text-align: center;
}

.right-col {
  left: 500px;
  width: 238px;
}

.details {
  top: 62px;
}

.ingredients {
  top: 306px;
  font-size: 15px;
  line-height: 1.04;
}

.left-low {
  top: 430px;
  left: 78px;
  width: 170px;
}

.center-low {
  top: 430px;
  left: 300px;
  width: 170px;
}

.left-bottom {
  top: 585px;
  left: 34px;
  width: 250px;
}

@media (max-width: 820px) {
  body {
    place-items: start;
    overflow-x: auto;
  }

  .canvas {
    transform-origin: top left;
  }
}
