@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,100&display=swap');


body{
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, rgba(248, 248, 25, 0.957), rgba(215, 245, 40, 0.7));
}
    /*---- Inicio del Header---- */

header{
    background-image:linear-gradient(to right, rgba(45, 43, 43, 0.7), rgba(0, 0, 0, 0.7)), url("/Img/imagenHeader.jpg");
    background-size: cover;
    background-position: 50% 40%;
    position: relative;
    }
header .navbar-nav a:hover{
    background-color: rgb(186, 173, 31);
    border-radius: 8px;
}
    /*---- Fin del Header---- */

    /*---- Inicio del Carrito---- */
.carrito{
    min-height: 70vh;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* .tableProductos{
    display: flex;
} */

.tableProductos >img{
    width: 9rem;
    object-fit: contain;
    border-radius: 6px;
    margin-right: 20px;
}

.tableCantidad >input{
    width: 40px;
    border: none;
    outline: 0;
    font-weight: 700;
    font-size: 16px;
    margin-right: 30px;
    margin-bottom: 20px;
}

