/* 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 {
  margin: auto;
  background-color: #e3e2d7;
  color: black;
  font-family: Verdana;
}
.container {
    max-width: 960px; /* Adjust as needed */
    margin: 0 auto; /* Horizontally centers the container */
    padding: 20px;  /* Optional: Adds some spacing around content */
}
   .grid-container {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr; /* Creates three equal-width columns */
      gap: 20px; /* Adds space between grid items */
    }

    .grid-item {
      padding: 10px;
      /* Add other styling */
    }
