body {
    font-family: Arial, Helvetica, sans-serif;
}
h2 {
    text-align: center;
    color: #1aa99d;	
}
.gallery{
    margin: 15px 14px 20px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 300px;
    grid-gap: 0.5rem;
}
.gallery-item {
    height: 100%;
    width: 100%;
    overflow: hidden;

}
.gallery-item img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 800px){
    .gallery-item img{
    height: 100%;
    width: 100%;
    object-fit: cover;
	margin-right: 2px;
}
}
.gallery img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}
.box-scroll{
    margin: 0 auto;
    width: 100%;
    height: 90%;
    overflow-y: scroll;
    position: relative;
}
::-webkit-scrollbar {
    width: 5px;
}

@media screen and (max-height: 500px){
    .box-scroll{
        width: 100%;
        height: 300px;}
}

.lb-container {
    position: relative;
}

.lb-closeContainer {
    position: absolute;
    right: -4px;
    top: -30px;
    z-index: 9;
}
.lb-closeContainer{
    visibility: hidden;
}