html {
    background-color: #333333;
}

.galleryGridContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr)); /* Adjust to ensure columns adjust based on available space */
    gap: 20px;
    padding: 6%;
}

.galleryImgContainer {
    position: relative; /* Ensure the hoverInfo is positioned relative to this container */
    width: 100%;
    padding-bottom: 66.66%;
    overflow: hidden;
}

.galleryImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.descInfo:first-of-type {
    position: absolute;
    font-family: "Source Serif Pro Semibold";
    top: 10%;
    left: 10%;
    right: 10%;
    margin: 0;
    font-size: 30px;
}

.descInfo:nth-of-type(2) {
    position: absolute;
    font-family: "Source Serif Pro";
    top: 100px;
    left: 15px;
    right: 10px;
    margin: 0;
    font-size: 20px;
}

.dateInfo {
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 100%;
    text-align: left;
}

.hoverInfo {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(60, 63, 65, 0.8); /* Lighter background color with opacity */
    color: white;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 10%;
}

.galleryImgContainer:hover .hoverInfo {
    display: block;
}

.constructionSiteGalleryH2 {
    text-align: center;
    color: white;
    font-family: "Source Serif Pro Semibold";
    font-size: 23px;
    margin-bottom: -1%;
}

/*@media (max-width: 600px) {*/
/**/
/*}*/