* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-image: url('IMAGES/groceryBG.jpg');
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
div.grocery-container {
    min-height: 500px;
    width: 55%;
    background-color: rgba(255, 255, 255, 0.678) ; /*rgba(235, 234, 170, 0.7)*/
    margin: 80px auto;
    border-radius: 20px;
    box-shadow: 0px 0px 10px yellow;
    padding: 15px;
    position: relative;
    padding: 8px 24px;
}

div.grocery-container p.remain {
    font-size: 22px;
    color: brown;
    font-weight: bold;
}
div.grocery-container span.message {
    color: orangered;
    font-weight: bold;
}
div.grocery-container p.error {
    color: green;
    font-size: 22px;
    margin-bottom: 20px;
    margin-left: 15px;
}
.grocery-container .form-container input {
    height: 40px;
    width: 70%;
    padding-left: 18px;
}

.grocery-container .form-container button {
    min-width: 100px;
    padding: 8px 16px;
    font-size: 18px;
}

div.grocery-container input {
    width: 50%;
    height: 30px;
    border-radius: 15px;
    border: solid 1px gray;
    padding-left: 8px;
    font-size: 22px;
    margin-top: 20px;
}
div.listOfItems .item-container {
    position: relative;
    font-size: 22px;
}
div.listOfItems .item-container:first-child {
    margin-top: 16px;
}

div.listOfItems .item-container p {
    font-size: 28px;
}

div.listOfItems .item-container .item-icons button {
    cursor: pointer;
    margin-right: -15px;
    font-size: 25px;
    border: none !important;
}