
/* Menu */
h1{
    text-align: center;
}

#pedidos{
    margin: auto;
}

#container{
    display: flex;
    justify-content: space-around
}

section h3{
    text-align: center
}


.contenedor{
    margin-top: 25px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    
    justify-content: center;
}

.card{
    border: 1px solid black;
    border-radius: 10px;
    
    width: 250px;

    margin: 10px;
    padding: 10px;
    
}

.card img{
    width: 100%;
    height: 70%;
    border-radius: 10px;
    margin-bottom: 30px;

}

.card h4{
    color: #6D6E71;
    margin-bottom: 10px;

}


.precio{
    color: #3A160E;
    font-size: 25px;
    font-weight: bold;
}


