h1{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.gallery{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
 .gallery-item{
    flex: 0 0 calc(33.33% - 10px);
}
.gallery-image{
    width: 100%;
    height: 300px;
    transition: .3s;
    object-fit: cover;
    cursor: pointer;
}
 .gallery-image:hover{
    transform: scale(1.1);
}
.ligthBox{
    display: none;
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 100;
}
.ligthbox-content{
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.ligthBox-img{
        display: flex;
        justify-content: center;
        align-items: center;
        
}
.img-content{
  position: relative;
}


.ligthbox-imagem{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    object-fit: cover;
}
.ligthbox-close{
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 2rem;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.1rem 0.3rem;
    cursor: pointer;
    transform: .4s;
}
.ligthbox-close:hover{
    background-color: #fff;
    color: #000;
}