

.container h2{
    text-align: center;
    font-size: 30px;
    margin: 1px 0;
}

.container ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 1px 0;
}

.container ul .category{
    list-style: none;
    padding: 5px 10px;
    margin-right: 15px;
    margin-bottom: 10px;
    color: white;
    border-radius: 1px;
    cursor: pointer;
}

.container ul .category.active{
    background: #BC0808;
    color: white;
}

.container .gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1px;
    background: black;
}

.container .gallery .image{
    width: 340px;
    height: 200px;
    overflow: hidden;
    margin: 5px;
    
}

.container .gallery .image:hover img{
    transform: scale(1.2);
}

.container .gallery .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}