<style>
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
      font-family: 'JetBrains Mono', monospace;
      padding-top: 120px;
      background: #00161d;
      color: #fff;
    }

    .instructions {
      max-width: 800px;
      margin: 0 auto 30px; /* Espacement entre la navbar et le conteneur */
      border-radius: 10px;
      line-height: 1.6;
    }

    .stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto auto ;
      
    }

    .stat-item {
      text-align: center;
      background: rgba(255, 255, 255, 0.1);
      padding: 20px 20px 30px 30px;
      border-radius: 10px;
      backdrop-filter: blur(5px);
    }

    .stat-label {
      font-weight: bold;
      margin-bottom: 10px;
      color: #fff;
    }

    .circle-progress {
      width: 150px;
      height: 150px;
      position: relative;
      margin: 0 auto auto;
      display: flex;
    justify-content: center;
    align-items: center;
    }

    .circle-progress svg {
      width: 150px;
      height: 150px;
      transform: rotate(-90deg);
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .circle-bg {
      fill: none;
      stroke: rgba(255, 255, 255, 0.1);
      stroke-width: 8;
    }

    .circle-progress-path {
      fill: none;
      stroke-width: 8;
      stroke-linecap: round;
      transition: stroke-dashoffset 0.5s ease;
    }

    .stat-value {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 24px;
      font-weight: bold;
      color: #fff;
    }

    .stat-input {
      width: 80px;
      padding: 8px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 4px;
      text-align: center;
      margin-top: 10px;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .controls {
      text-align: center;
      margin: 20px 0;
    }

    button {
      padding: 10px 20px;
      margin: 0 5px;
      cursor: pointer;
      background: #339097;
      color: #ff7271;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      transition: background 0.3s ease;
    }

    button:hover {
      background: #ff7271;
      color: #339097;
    }

    .average-container {
      max-width: 800px;
      margin: 20px auto;
      padding: 20px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      text-align: center;
    }

    .average-label {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .average-bar {
      height: 20px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      overflow: hidden;
      margin: 10px 0;
    }

    .average-fill {
      height: 100%;
      background: #00bf63;
      width: 0%;
      transition: width 0.5s ease;
    }

    .average-value {
      margin-top: 5px;
      font-size: 16px;
    }
    .human-container {
  width: 200px;
  height: 400px;
  margin: 20px auto;
  background: rgba(255, 255, 255, 0.1); /* Pour voir le conteneur */
}

.human-body-fill {
  transition: height 0.5s ease;
  transform-origin: bottom;
}

.human-head-fill {
  transition: height 0.5s ease;
  transform-origin: top;
  
}
  </style>

