body{
    background: #131f33;
}
#gallery-section{
    height: 110vh;
    width: 1348px;
}
.gallery-container{
    width: 1280px;
    min-height: 50px;
    margin: 70px auto 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.gallery-container .box{
    position: relative;
    height: 300px;
    width: 300px;
    margin: 10px;
    box-sizing: border-box;
    display: inline-block;
    background-color: yellow;
    box-shadow: 2px 5px 15px #524d4d;
}
.gallery-container .box .imgBox{
    position: relative;
    overflow: hidden;
}
.gallery-container .box .imgBox img{
    max-width: 100%;
    transition: transform 2s;
}
.gallery-container .box:hover .imgBox img{
    transform: scale(1.2);
}
.gallery-container .box .details{
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,.8);
    transform: scaleY(0);
    transition: transform .5s;
}
.gallery-container .box:hover .details{
    transform: scaleY(1);
}
.gallery-container .box .details .content{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    padding: 15px;
    color: #fff;
    background: transparent;
}
.gallery-container .box .details .content h2{
    margin: 0;
    padding: 0;
    font-size: 20px;
    color: #ff0;
}
.gallery-container .box .details .content p{
    margin: 10px 0 0;
    padding: 0;
}