.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust opacity as needed */
    z-index: 1;
}

.hero {
    background-image: url("../photos/hero.jpg");
}

.uploadedImage{
    width: 150px;
    height: 100px;
}

.logo{
    font-family:cursive;
}


.imageFixWidth{
  max-width: 400px;
  max-height: 400px;
}



.imageContainer{
  position: relative;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.specifications{
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;

}

.imageContainer:hover .specifications {
  opacity: 1;
}


.imageContainer:hover .image {
  opacity: 0.3;
}


.text {
  background-color: #04AA6D;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}


/* @media (min-width: 768px) and (max-width: 1023px) {
  .tabClass {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

   */