@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Poppins', sans-serif;
    
}
body{
    background-color: #E7E9E0;
}
.container-position{
    margin-top: 30%;
}

.container{
    padding: 50px;
    display: flex;
    flex-direction: column;  
    background-color: #E7E9E0;
}
.cart-position{
    position: relative;
    margin: auto;
    z-index: 1;
}
.cartImage{
    position: relative;
    z-index: -1;
    height: 150px;
    width: 150px;
    
}
#input-field{
    padding: 10px 50px;
    justify-content: center;
    border-style: none;
    margin-top: 20px;
    border-radius: 10px;
    background-color:rgb(199, 214, 220);
    outline: none;
    font-size: 20px;
    text-align: center;

}
#input-field::placeholder{
    
    color: rgb(74, 74, 74);
} 
#add-button{
    
    padding: 10px 60px;
    background-color: rgb(171, 64, 64);
    border-radius: 10px;
    border-style: none;
    margin-top: 20px;
    cursor: pointer;
}
.button-text{

    color: white;
    font-size: 20px;
}
#list-container{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    width: fit-content;
    height: fit-content;
    color: white;
    border-radius: 15px;
    margin-top: 30px;
    
}
#list-container li{
    list-style: none;
    background-color: rgb(40, 100, 204);
    box-shadow: 0px 1px 4px rgb(0, 0, 0);
    padding: 10px;
    color: white;
    border-radius: 10px;
    margin: 5px;
    flex-grow: 1;
    text-align: center;
    font-size: 20px;

}
.error{
    color: rgba(193, 0, 0, 0.591);
    font-weight: 900;
    text-align: center;
    margin-top: 5px;
}

