
header > a {
  text-decoration: none;
  color: inherit;
}

.fixed-header-align {
  display: block;
  padding-top: 33px;
  margin-top: -33px;
}
.fixed-header-offset {
  display: block;
  margin-top: 33px;
}

.images-panel {
  width: 90%; 
  margin: 0 auto;
}

.images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  margin-bottom: 20px;
}
.img-container {
  /* flex: 0 0 46%; */
  border: 1px solid rgb(54, 52, 87);
  display: flex;
  justify-content: center;
  min-height: 100px;
  background-color: rgb(222, 232, 243);
  position: relative;
}

.thumb-style {
  padding: 3%;
  max-width: 100%;
}

.image-desc-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  
  background-color: #ff000000;
}
.image-desc-wrapper:hover {
  /* background-color: #ff0000aa; */
}

.image-desc {
  visibility: hidden;
  position: absolute;
  display: inline-block;
  color: rgb(54, 52, 87);
  right: 0;
  bottom: 0;
  margin: 0.2rem;
  padding: 0 0.2rem;
  border: 1px solid rgba(54, 52, 87, 0.8);
  background-color: rgb(222, 232, 243);
  max-width: 70%;
  font-size: 0.7em;
  text-align: center;
}

.img-container .image-desc {
  visibility: visible;
}
/* .img-container:hover .image-desc {
  visibility: visible;
} */


/* Mobile Systems */
@media only screen and (max-width: 750px) {
  .thumb-style {
    align-self: center;
    max-height: 200px;
  }
}

/* Tablet Styles */
@media only screen and (min-width: 751px) and (max-width: 1024px) {
  .thumb-style {
    align-self: center;
    max-height: 300px;
    
  }
  .images-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Desktop Systems */
@media only screen and (min-width: 1025px) {
  .thumb-style {
    align-self: center;
    max-height: 300px;
  }
  .images-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  /* .img-container {
    width: 200px;
    height: 200px;
  } */
}