/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

.text box {
  max-width: 700px; /* Set the maximum width for the text block */
  margin-left: auto; /* Equal left margin */
  margin-right: auto; /* Equal right margin */
  text-align: center; /* Center the text *inside* the block */
  width: 100%; /* Optional: ensures it's responsive */
}