




.content_wrapper{
    margin: 50px auto 100px auto;
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 100px;
}
.content_item{
    transition: 0.5s;
    display: flex;
}

.content_item:hover{
    transition: 0.5s;
    opacity: 0.6;
}

.content_item h2{
    width: 140px;
    height: 100px;
    background-color: #333;
    color: #fff;
    margin-top: 0;
    padding: 50px 30px;
    font-size: 25px;
}

.content_item img{
    width: 300px;
    height: 200px;
    object-fit: cover;

}