/* 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." */
h1 {
  text-align:center;
}


body {
  padding: 0px 0 20px 0px;
  margin-left: 160px;
  font-family: "Courier New", monospace;
  color: #FFFFFF;
  font-weight: normal;
  background: #FF7000;
  margin: 80px;
  text-align: justify;  
}

a:link {
  color: #0000AA;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #0000AA;
  background-color:transparent;
  text-decoration: none;
}  

a:hover {
  color: #F0E0D0;
  background-color:transparent;
  text-decoration: none;
}

img {
  /*max-width: 15%; /* Ensures the image doesn't exceed its container's width */
  height: auto;    /* Maintains the aspect ratio by adjusting height proportionally */
  /*display: block;  /* Optional: removes extra space below the image */
}
div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

div.gallery-item {
  margin: 5px;
/*  border: 1px solid #ccc;*/
  width: 180px;
}
/*
div.gallery-item:hover {
  border: 1px solid #777;
}*/


div.gallery-item img {
  width: 100%;
  height: auto;
}

div.gallery-item div.desc {
  padding: 15px;
  text-align: center;
}
