body {
  margin: 0;
  padding: 0;
  font-family: "Cormorant", serif;
  color: #000;
  line-height: 1.5;
  box-sizing: border-box;
  font-size: 1.125rem;
}

/* Visual Data: Meter & Progress */
meter {
  width: 100%;
  height: 2rem;
}

meter::-webkit-meter-optimum-value {
  -webkit-transition: width 0.5s;
}

meter::-webkit-meter-bar {
  animation: animate-stripes 5s linear infinite;
  background-image: linear-gradient(
    135deg,
    transparent,
    transparent 33%,
    rgba(0, 0, 0, 0.1) 33%,
    rgba(0, 0, 0, 0.1) 66%,
    transparent 66%
  );
  background-size: 50px 25px;
}

@keyframes animate-stripes {
  to {
    background-position: -50px 0;
  }
}

.christmas-tree {
  div {
    display: flex;
    width: 30%;

    :nth-child(1) {
      transform: scale(-1, 1);
    }
  }
  progress {
    border-radius: 0;
    width: 100%;
    height: 2rem;
  }
  progress::-webkit-progress-bar {
    background-color: beige;
    border-radius: 0;
  }
  progress::-webkit-progress-value {
    background-color: darkolivegreen;
    border-radius: 0;
  }

  .trunk {
    progress::-webkit-progress-value {
      background-color: sienna;
      border-radius: 0;
    }
  }
}
