.productos{
    display: flex;
    flex-wrap: wrap;
    padding: 0 1rem;
    justify-content: space-between;
}

.productos__container{
    background-color: bisque;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    height: 200px;
    margin-bottom: 1rem;
    margin-right: 1rem;
    padding: 1rem;
}

.productos__titulo{
    font-size: 1.3rem;
    text-align: center;
}

.productos__descripcion{
    text-align: justify;
    line-height: 1.5;
}


@media screen and (max-width: 480px) {

    
    
}

@media screen and (max-width:1024px){

    .productos__container{
        width: 95%;
        height: auto;
        background-color: white;
    }
    
}
