*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.box{
    position: relative;
    /* min-height: 100vh; */
    /* background: rgb(201, 93, 93); */
}
.box h1{
    font-size: 30px;
    text-align: center;
    padding: 15px;
    text-transform: capitalize;
}
.box .imagebox{
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    padding: 10px;
}
.box .imagebox .image{
    height: 150px;
    width: 150px;
    border: 5px solid rgb(255 255 255);
    box-shadow: 0 5px 15px rgb(220 220 225);
    border-radius: 5px;overflow: hidden;
    cursor: pointer;
}
.box .imagebox .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}
.box .imagebox .image:hover img{
    transform: scale(1.1);
}
.box .popup-image{
    position: fixed;
    top: 0;
    left: 0;
    background: rgb(0, 0, .9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}
.box .popup-image span{
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 40px;
    font-weight: bolder;
    color: white;
    cursor: pointer;
    z-index: 100;
}
.box .popup-image img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 5px solid white;
    border-radius: 5px;
    width: 750px;
    object-fit: cover;
}
@media (max-width:768px) {
    .box .popup-image img{
        width: 312px;
    }
}