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

 .ezgallery.montage { 
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
} 

.ezgallery.montage img {
  flex: auto;
  margin: 0 30px 30px 0;
  object-fit: contain;
  object-position: bottom;
}

.ezgallery.horizontal { 
  display: grid;
  grid-gap: 200px;
  gap: 200px;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-auto-rows: minmax(100px, auto);
}

.ezgallery.horizontal a {
  text-align: center;
}

.ezgallery.horizontal img {
  text-align: center;
  vertical-align: middle;
  margin: 0 5px 5px 0;
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
  object-position: bottom;
}
  
#header {
  width: 100%; /* Full width */
  min-height: 120px; /* Adjust this to change size */
  background-size: cover;
  padding: 20px; /* Space inside the header */
}

