*{
    margin: 0%;
    padding: 0%;
}

body{
    height: 100vh;
    background-color: #A2AEBB;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1{
    color: #3F88C5;
}

main{
    display: flex;
    margin: 20px 20px; 
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1C3144;
            /* U    R    D    L*/   
    padding: 20px 30px 20px 30px;
    box-shadow: 0px 1px 30px 1px #000000;
}

#carro{
    border-radius: 10px;
    padding: 10px;
    background-color: #D00000;
    border: none;
    color: white;
    font-weight: bold;
}

#carrito_text{
    display: flex;
    align-items: center;
    gap: 8px;
    color:#3F88C5;
}

#contenedor_items{
    width: 350px;
    height: 350px;
    animation: fadeIn 2s ease-in-out 1s;
}

.producto{
    position: relative;
    margin: 10px;
    width: 350px;
    height: 100px;
    background-color: #FFBA08;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.add{
    position: absolute;
    border-radius: 10px;
    border: none;
    width: 100px;
    height: 40px;
    background-color: #D00000;
    color: white;
    font-weight: bold;
    bottom: 30px;
    right: 20px;
}

#producto1 img{
    position: absolute;
    width: 100px;
    height: 100px;
    left: 10px;
}

#producto2 img{
    position: absolute;
    width: 60px;
    height: 100px;
    left: 30px;
}

#producto3 img{
    position: absolute;
    width: 100px;
    height: 100px;
    left: 10px;
}

.nombre{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    height: 100%;
}

#itemsAgregados{
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 15px;
}

.productico{
    display: flex;
    background-color: #3F88C5;
    border-radius: 10px;
    width: 250px;
    height: 300px ;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

img{
    width: 100px;
    height: 130px;
}

#modal{
    display: none;
    background-color:#1C3144;
    width: 250px;
    height: 350px;
    border-radius: 10px;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    color: #A2AEBB;
    /* margin-bottom:100px ; */

}

#contenedor_modal{
    position: fixed;
    top: 30%;
    left: 41.8%;
    filter: blur(10);
}

.productico button{
    border-radius: 10px;
    border: none;
    width: 100px;
    height: 40px;
    background-color: #D00000;
    color: white;
    font-weight: bold;
    bottom: 30px;
    right: 20px;
    margin-bottom: 10px;
}

#modal button{
    background-color: transparent;
    border: none;
    color: white;
    width: 30px;
    cursor: pointer;
    position: relative;
    bottom: -20px;
    left: 100px;

}


button:hover{
    background-color: #6b0000;
}

#carro:hover{
    background-color: #6b0000;
}

@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translateY(-20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}


