* {
  box-sizing: inherit;
}

body {
  background-color: hsl(45, 25%, 95%);
  background: linear-gradient(to bottom, hsl(45, 25%, 90%), hsl(45, 100%, 100%));
  background-size: 100vw 100vh;
  background-repeat: no-repeat;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
}

path {
  stroke-dasharray: 100000;
  stroke-dashoffset: 100000;
}

svg {
  display: block;
  margin: 3rem auto;
}

#products, #new-products {
  display: block;
  margin: 4.5rem auto;
  max-width: 45rem;
  text-align: center;
}

.product {
  display: inline-block;
  vertical-align: top;
  padding-bottom: 1rem;
}

.product .name {
  font-weight: 500;
}

img {
  width: 14.5rem;
  margin: .25rem;
  border-radius: .375rem;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}