.gallery-container {
    /* width: 100%; */
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(3, 1fr);
    margin: 5% 3%;
    gap: 10px;
    text-align: center;
}

.gallery-item {
    /* width: calc(33.333% - 10px);
    margin: 5px;
    box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.3);
    transition: transform .3s ease; */
    display: none;
}

.gallery-item img {
    width: 100%;
    height: auto;
}

.gallery-item:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    border-radius: 20px;
    height: auto;
    display: block;
}

#loadMore {
    display: block;
    /* Makes the button a block-level element */
    margin: 20px auto;
    font-size: 25px;
    width: 130px;
    background-color: #1A47AA;
    color: white;
    border-radius: 25px;
    border: 0;
    box-shadow: 0 10px 20px rgba(21, 15, 15, .2);
    font-family: 700;
    padding: 5px;
}

#loadMore:hover {
    color: #1A47AA;
    background-color: white;
    cursor: pointer;
    font-family: 700;
}