body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 30px;
    background-color: #eee;
  }
  
  #board {
    display: grid;
    grid-template-columns: repeat(5, 50px);
    grid-gap: 5px;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .tile {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 2px solid #ccc;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .correct {
    background-color: green;
    color: white;
  }
  
  .present {
    background-color: orange;
    color: white;
  }
  
  .absent {
    background-color: lightgray;
    color: white;
  }
  