.chart {
    width: max(370px, 46vw);
    aspect-ratio: 1.5;
    display: grid;
    grid-template-rows: repeat(100, 1fr);
    column-gap: 10px;

    .chart-bar {
      grid-column:  sibling-index();
      grid-row: span attr(data-value number);

      border-radius: 1vw;
      background: linear-gradient(-135deg, rgb(3, 205, 13), rgb(238, 248, 233) 80%);
      box-shadow: inset -0.4vw 0.2vw 0 rgb(2, 132, 113), inset 0 -0.1vw 0 rgb(177, 237, 143);
    }
  }

  @layer base {
  body {
    height: 100vh;
    margin: 0;
    display: grid;
    place-content: center;
    place-items: center;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
    font: 14px 'poppins';
  }
  header {
    text-align: center;
    margin-bottom: 10px;
    h1 {font-size: max(2vw, 1.5em);}
  }
  footer {
    position: fixed;
    bottom: 1lh;
    inset-inline: 0;
    text-align: center;
    font-size: max(1vw, 1em);
  }
  ul {
    margin: 0;
    list-style: none;
    li {
      contain: size;
      text-align: center;
      padding-top: 10px;
      font-size: clamp(12px, 1vw, 2rem);
    }
  }
}