*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.imgContainerMain{
    position: relative;
    min-height: 100vh;
    background-color: #ddd;
}
.imgContainerMain , h1{
    font-size: 40px;
    font-weight: 800 !important;
    font-family: 'Lato', sans-serif;
    padding: 15px;
    color: #333;
    text-align: center;
    text-transform: uppercase;
}
.imgContainerMain .imageContainer{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 10px;
}
.imgContainerMain .imageContainer .image{
    height: 350px;
    width: 350px;
    /* border: 10px solid; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    overflow: hidden;
    cursor: pointer;
}
.imgContainerMain .imageContainer .image img{   
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}
.imgContainerMain .imageContainer .image:hover img{
    transform: scale(1.1);
}
.imgContainerMain .popupImage{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}
.imgContainerMain .popupImage span{
    position: absolute;
    top: 70px;
    right:10px;
    font-size: 60px;
    font-weight: bolder;
    color: #fff;
    cursor: pointer;
    z-index: 100;
}
.imgContainerMain .popupImage .image{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* border: 5px solid #fff; */
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    border-radius: 5px;
    width: 450px;
    object-fit: cover;
}
@media (max-width:768px) {
    .imgContainerMain .popupImage img{
        width: 85%;
    }
}

.imgContainerMain a{

    font-size: 25px;
    font-weight:600;
    font-family: 'Lato', sans-serif;
    padding-top: 10px;
    color: #333;
    height: 25%;
    text-align: center;
    text-transform: uppercase;
}
.imgContainerMain a:hover{
    color: #ffff;
}

button , .newbutt{
    border-radius: 15px;
    /* width: 21%; */
    /* padding: 5px; */
    /* font-size: 27px; */
    border: 1px solid rgb(49, 48, 48);
}

button:hover{
    border: none;
    overflow: hidden;
    background-color: #b2c451;
}