body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 50px;
  }
  
  h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  #game-container {
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    gap: 10px;
    justify-content: center;
    margin: 0 auto;
    width: 250px;
  }
  
  .row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
  }
  
  .cell {
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 40px;
    font-size: 1.2em;
    background-color: white;
  }
  
  .cell.correct {
    background-color: #538d4e;
    color: white;
  }
  
  .cell.present {
    background-color: #b59f3b;
    color: white;
  }
  
  .cell.absent {
    background-color: #3a3a3c;
    color: white;
  }
  
  #controls {
    margin-top: 20px;
  }
  
  #guess-input {
    font-size: 1em;
    padding: 5px;
  }
  
  #guess-button, #give-up-button, #new-game-button {
    margin-left: 10px;
    padding: 5px 10px;
    font-size: 1em;
  }
  
  #message {
    margin-top: 20px;
    font-size: 1.2em;
    color: #555;
  }
  
  button {
    margin-bottom: 1em;
  }
  
  
