.categorie {
    background-color: var(--verde_trasp);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid black;
    padding-inline: 10%;
}

.categoria {
    min-width: 300px;
    width: 30%;
    height: auto;
    background-color: var(--bianco);
    margin-block: 20px;
    border: 2px solid var(--bianco);
}

.categoria img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.categoria p {
    margin: 0;
    text-align: center;
    font-family: importante;
    font-weight: bold;
    font-size: medium;
    color: black;
    letter-spacing: 3px;
}

.categoria p {
    cursor: pointer;
}

@media screen and (max-width: 760px) {
    .categoria {
        width: 100%;
    }

    .categorie {
        justify-content: center;
    }
}


@media screen and (min-width: 760px) and (max-width: 1150px) {
    .categoria {
        width: 48%;
        
    }

    .categorie {
        justify-content: space-between;
    }
}