.produit {
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
    margin-bottom: 40px;
    background-color: rgb(135, 206, 235);
    border-radius: 20px;
}

.description {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 500;
    font-family: Montserrat, sans-serif;
}

.liste-produits {
    max-height: 600px;
    width: 100%;
}

.image-prod {
    width: 200px;
}

.produit .text {
    margin-left: 15px;
    overflow: hidden;
    width: 80%;
}

.produit .image-prod img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

h1 {
    padding-top: 150px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 40px;
    font-weight: 1000;
    color: white;
}

.prix {
    margin-left: 80%;
    margin-right: 10px;
    font-size: 20px;
    font-weight: 1000;
}

.all {
    justify-content: center;
    align-items: center;
    padding-top: 200px;
    padding-bottom: 200px;
    display: flex;
    flex-wrap: wrap;
    background-color: #006c94;
}

.titre {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 800;
    line-height: 24px;
    font-family: Montserrat, sans-serif;
    margin-top: 10px;
}

.panier {
    text-decoration: none;
    color: #000;
    background-color: #fff;
    border-radius: 20px;
    padding: 5 5 5 5;
    font-weight: 1000;
    text-transform: uppercase;
}

span {
    background-color: blue;
    padding: 1 7 1 7;
    height: 20px;
    width: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
}

@media screen and (max-width:767.98px) {
    .titre {
        font-size: 15px;
    }
    .description {
        font-size: 12px;
    }
    .liste-produits {
        width: 100%;
    }
    .prix {
        margin-left: 60%;
    }
    .produit {
        display: block;
    }
    .image-prod {
        width: 100%;
        height: 200px;
    }
    .pan {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    h1 {
        font-size: 25px;
    }
    .panier {
        font-size: 10px;
    }
    .all {
        padding-top: 90px;
    }
}
@media screen and (max-width:930px) {
    .liste-produits {
        width: 100%;
    }
    .prix {
        margin-left: 60%;
    }
    .produit {
        display: block;
    }
    .image-prod {
        width: 100%;
        height: 350px;
    }
    .pan {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    h1 {
        font-size: 25px;
    }
    .panier {
        font-size: 10px;
    }
    
}

@media screen and (max-width:1200px) {
    .image-prod{
        width: 100%;
    }
}	