html {
    background-color: #333333;
}


.homeGridContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr)); /* Adjust to ensure columns adjust based on available space */
    gap: 20px;
    padding: 6%;
}

.homeImgContainer {
    position: relative; /* Ensure the hoverInfo is positioned relative to this container */
    width: 100%;
    padding-bottom: 66.66%;
    overflow: hidden;
}

.homeImg {
    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%;
}

.homeImgContainer:hover .hoverInfo {
    display: block;
}

.homeContact {
    position: relative;
    background: aliceblue;
    margin-left: -8px;
    margin-right: -8px;
    margin-top: 3%;
    margin-bottom: -2%;
    padding-bottom: 1%;
}

.homeContactTitle {
    font-family: "Source Serif Pro Semibold";
    font-size: 3em; /* Adjust font size as needed */

}

.homeContactP {
    font-family: "Source Serif Pro";
    font-size: 1.5em; /* Adjust font size as needed */
    padding-left: 1%;
    padding-bottom: 1%;
}

.homeContactIconContainer {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 2%;
    box-sizing: border-box;
}

.homeContactIcon {
    width: 4vw;
    height: auto;
    display: block;
}

.iconP {
    margin-top: -0.1%;
    font-family: "Source Serif Pro";
}

.homeContactIconContentContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.homeConstructionSiteGalleryH2 {
    text-align: center;
    color: white;
    font-family: "Source Serif Pro Semibold";
    font-size: 23px;
    margin-bottom: -1%;
}

@media (max-width: 600px) {
    .homeContactTitle {
        font-family: "Source Serif Pro Semibold";
        font-size: 2.5em; /* Adjust font size as needed */

    }

    .homeContactP {
        font-family: "Source Serif Pro";
        font-size: 1.4em; /* Adjust font size as needed */
        padding-left: 1%;
        padding-bottom: 1%;
    }

    .homeContactIcon {
        width: 10vw;
        height: auto;
        display: block;
    }
}