*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    
}
.gallery{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111e24;
    /* background: #7ebad6; */
    position: relative;
    flex-direction: column;
}
.box{
    width: fit-content;
    position: absolute;
    top: 0;
    left: 0;
}
.box:nth-child(1){
    width: 10%;
    top: 10%;
    left: 25%;
}
.box:nth-child(2){
    width: 15%;
    top: 71%;
    left: 8%;
}
.box:nth-child(3){
    width: 18%;
    top: 41%;
    left: 15%;
}
.box:nth-child(4){
    width: 12%;
    top: 15%;
    left: 10%;
}
.box:nth-child(5){
    width: 20%;
    top: 6%;
    left: 40%;
}
.box:nth-child(6){
    width: 10%;
    top: 19%;
    left: 70%;
}
.box:nth-child(7){
    width: 25%;
    top: 55%;
    left: 70%;
}
.box:nth-child(8){
    width: 15%;
    top: 10%;
    left: 83%;
}
.boxImage{
    flex-shrink: 0;
    width: 100%;
    height: 20vh;
    object-fit: cover;
}
.filledBox{
    width: 300px;
    height: 310px;
    margin-top: 90px;
    margin-left: 50px;
    /*border: 1px solid #fff;
    */display: flex;
    justify-content: center;
    align-items: center;
    
}
.filledBox img{
    width: 100%;
    height: 100%;
}
.filledBox.hide span{
    display: none;
}
.title{
    font-size: 3rem;
    color: #fff;
    font-weight: bolder;
    text-transform: capitalize;
    transition: all linear 1s;
    -webkit-transition: all linear 1s;
    -moz-transition: all linear 1s;
    -ms-transition: all linear 1s;
    -o-transition: all linear 1s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
.title.hide{
    opacity: 0;
    visibility: hidden;
}

