/* 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: Georgia;
}
      h1 {
      font-size: 3rem; /* Sets heading 1 font size to 2 times the root HTML element's font size */
    }
    .number-one {
  display: flex; /* Enables Flexbox layout */
  justify-content: center; /* Centers items horizontally */
  align-items: center; /* Centers items vertically */
  
  /* Optional: Add spacing between the image and text */
  gap: 10px;
  margin: 0;
}
h2, p {
  margin: 0;
}
.center {
  margin-left: auto;
  margin-right: auto;
  width: 50%; /* Or any other width less than 100% */
}
  th, td {
    border: 1px solid black;
  }
