
.top-background{
    background: url("../src/assets/background-gallery2.jpg") no-repeat top center/cover;
}

.container{
    padding: 0 3% !important;
    margin: 4rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.container .gallerywrap,
.container img {
     max-width: 24rem;
     min-width: 17rem;
}

.container .gallerywrap{
    position: relative;
}

.container .gallerywrap h2{
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.container .gallerywrap .tint{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #04141d;
    opacity: 0.3;
    transition: 0.4s ease;
    cursor: pointer;
}

.container .gallerywrap:hover .tint{
opacity: 0.9;
}

@media screen and (max-width:777px) {
    .container img {
        max-width: 17rem;
        min-width: 17rem;
   }
}


@media screen and (max-width:425px){
    .container img {
        min-width: -webkit-fill-available;
    }
}
