.galery {
    text-align: center;
    width: 150px;
}

.miniature {
    height: 180px;
    object-fit: cover;
}

.miniature-recette {
    height: 400px;
    object-fit: cover;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 35px;
}


.recettes-colonnes {
    overflow:auto;
    width: 100%;
    padding-left: 20px;
}

.recettes-colonnes .marge{
    width: 10%;
    float:left;
}

.recettes-colonnes .image{
    width: 20%;
    float:left;
}

.recettes-colonnes .image img{
    object-fit: cover;
    height: 300px;
    border-radius: 20px;
}

.recettes-colonnes .titre{
    width: 68%;
    float:right;
}

@media screen and (max-width: 992px) {
    .wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 35px;
    }

    .recettes-colonnes {
        overflow:auto;
        width: 100%;
    }
    
    .recettes-colonnes .marge{
        width: 0%;
    }
    
    .recettes-colonnes .image{
        width: 30%;
        float:left;
    }
    
    .recettes-colonnes .image img{
        object-fit: cover;
        height: 300px;
        border-radius: 20px;
    }
    
    .recettes-colonnes .titre{
        width: 68%;
        float:right;
    }
}