/* *{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
} */
.galleryOverlay{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
}
.container{
    width: 1170px;
    flex-wrap: wrap;
    display: flex;
    margin: auto;
}
.galleryItem{
    flex-basis: 23%;
    margin: 1%;
}
.galleryItem img{
    width: 100%;
    height: 200px;
}
.imgBox{
    width: 60%;
    height: 70%;
    background-color: #fff;
    position: fixed;
    left: 20%;
    top: 15%;
    transform: scale(0);
    transition: 0.5s;
}
.imgBox img{
    width: 100%;
    height: 100%;
}
.imgBox span{
    position: absolute;
    right: 0px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    padding: 0px 5px;
}

.galleryOverlayShow{
    display: block;
}
.imgBoxShow{
    transform: scale(1);
}