/* 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;
}

  .grid-container {
  display: grid;
  /* Defines 3 columns, each taking an equal fraction of the available space */
  grid-template-columns: 1fr 1fr 1fr; 
  /* Defines 3 rows, each taking an equal fraction of the available space */
  grid-template-rows: 1fr 1fr 1fr; 
  /* Adds space (gutters) between the grid items */
  gap: 10px; 
}

/* Optional: add some basic styling to the items for visibility */
.grid-container > div {
  background-color: #f1f1f1;
  border: 1px solid black;
  padding: 10px;
  text-align: center;
}
