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

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  grid-template-rows: repeat(3, 1fr);    /* 3 rows */
  gap: 10px; /* spacing between images */
  height: 90vw;
  max-height: 800px;
  aspect-ratio: 1 / 1; /* keep grid square */
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop/fit images */
  border-radius: 8px;
}