body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: black;
  color: white;
}

main {
  text-align: center;
  max-width: 800px; /* Limit the text box size to 200 pixels */
  margin: 0 auto; /* Center the text box horizontally */
}

/* Optional: Adjust the text appearance */
text {
  font-family: Arial, sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}

/* Optional: Add some padding to main */
main {
  padding: 20px;
}
