 body {
    background-color: black;
    color: red;
    /* Centers text across the entire page */
  .container {
    text-align: center;
}


  table {
    /* Centers the table horizontally on the page */
    margin: 20px auto; 
    width: 100px; /* Reduced width so centering is visible */
    border-collapse: collapse;
  }

  table, th, td {
    border: 1px solid red;
  }

  th, td {
    padding: 5px;
    /* Centers text inside the table cells */
    text-align: center; 
  }
