body {
    font-family: Arial, sans-serif;
    background: #000 url('background.jpg') center center;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #FFF;
  }
  
  h1 {
    text-align: center;
    color: #FFF;
  }
  
  #game-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    text-align: left;
  }
  
  #game-content {
    display: flex;
  }
  
  #game-output {
    flex: 1;
    height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column-reverse;
    padding: 10px;
    border: 1px solid #333;
    background-color: rgba(0, 0, 0, 0.8);
    color: lime;
    margin-top: 25px;
    padding: 50px;
    font-size: 24px; /* Adjust the font size as desired */
  }
  
  #game-output::-webkit-scrollbar {
    width: 12px;
  }
  
  #game-output::-webkit-scrollbar-track {
    background-color: #000;
  }
  
  #game-output::-webkit-scrollbar-thumb {
    background-color: #333;
  }
  
  #game-output::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }
  
  #gif-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    padding: 10px;
  }
  
  #action-container {
    margin-top: 20px;
  }
  
  button {
    cursor: pointer;
    background: #000;
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    margin-top: 10px;
  }
  
  input {
    padding: 10px;
    width: calc(100% - 24px);
    margin-top: 10px;
  }
  
  #status-container {
    margin-top: 25px;
    margin-left: 25px;
  }
  
  #health-bar-container {
    width: 200px;
    height: 20px;
    border: 1px solid limegreen;
    background-color: rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
  }
  
  #health-bar {
    width: 100%;
    height: 100%;
    background-color: lime;
    transition: width 0.5s;
  }
  
  .flash-red {
    animation: flash-red 0.5s;
  }
  
  @keyframes flash-red {
    0% {
      background-color: red;
    }
    100% {
      background-color: limegreen;
    }
  }
  
  #inventory-display {
    margin-top: 10px;
    line-height: 1.5em;
  }