* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'ModBolda_Alterna', sans-serif;
}

.container {
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.container__item1 {
    position: relative;
    align-items: center;
    margin: 10px;
    flex-basis: 100%;
    min-width: 360px;
    height: 240px;
}

.container__item {
    position: relative;
    align-items: center;
    margin: 10px;
    flex-grow: 1;
    min-width: 360px;
    height: 230px;
}

.item__head {
    position: absolute;
    padding: 10px;
    box-sizing: border-box;
    top: 10px;
    width: 100%;
    color: #fff;
    font-size: 30px;
    text-align: left;
    opacity: 0;
    z-index: 0;
    transition: all .2s linear;
}

.item__description {
    padding-top: 10px;
    width: 100%;
    font-size: 20px;
}

.item__img {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    border-radius: 20px;
    overflow: auto;
    overflow: hidden;
}

.container__item1 a, .container__item a {
    position: absolute;
    width: 100%;
    height: 100%;
}

.item__img img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    align-self:center;
    min-width: 100%; 
    min-height: 100%;
    transition: all .2s linear;
    z-index: -1;
}

a:hover .item__head {
    opacity: 1;
}

a:hover img {
    opacity: 0.3;
}