body {
    font-family: Arial, sans-serif;
    text-align: center;
  }
  
  .container {
    width: 80%;
    margin: 40px auto;
    text-align: center;
  }
  
  .stickman {
    margin-bottom: 20px;
  }
  
  .stickman img {
    width: 100px;
    height: 100px;
  }
  
  .buttons {
    margin-top: 20px;
  }
  
  button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #f0f0f0;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #e0e0e0;
  }
  
  #health-count, #thirst-count, #hunger-count {
    font-weight: bold;
  }
  
  .red {
    color: #ff0000;
  }
  
  .orange {
    color: #ffa500;
  }
  
  .yellow {
    color: #ffff00;
  }
  
  .green {
    color: #00ff00;
  }