/* 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: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; /* Space between gallery items */
}

.gallery-item {
    border: 1px solid #ccc;
    padding: 5px;
    width: 200px; /* Fixed width for consistency */
}

.gallery-item img {
    width: 100%; /* Make image fill its container */
    height: auto;
    display: block;
}

.gallery-item:hover {
    border: 1px solid #777; /* Hover effect */
}