h1 {
  text-align: center;
  color: Purple;
  font-weight: bold;
}

body {
  background-color: white;
  color: black;
  font-family: 'Minecraft', sans-serif;
}

table, th, td {
  border: 5px solid black;
  border-collapse: collapse; /* Collapses borders between cells */
}
th, td {
  padding: 8px; /* Adds spacing inside cells */
  text-align: left; /* Aligns text within cells */
}
table {
  width: 100%; /* Makes the table span the full width */
}