.gallery-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 60%;
    margin: 10px auto;
    margin-bottom: 30px;
}
.gallery-container h2{
    font-weight: bold;
    letter-spacing: 2px;
    color: rgba(47, 143, 47, 0.979);
}
.image-cards{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 5px;
    padding-left: 110px;
}
.image-card{
    background-color: #fff;
    width: 220px;
    height: 200px;
    border-radius: 5px;
    box-shadow: 0 5px 5px rgba(0, 0, 2, 0.1);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.image-card:hover{
    transform: scale(1.01);
    box-shadow: 0 5px 5px rgba(35, 66, 34, 0.1);
}
.image-card img{
    border-radius: inherit;
    width: 100%;
    height: 100%;
    object-fit: cover;
}