body {
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #0e0c12;
    font-family: 'Rubik', sans-serif;
    user-select: none;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
}

.shopping-bag-img {
    height: 150px;
    margin-bottom: 50px;
}

#input-field {
    height: 50px;
    width: 83vw;
    border-radius: 15px;
    background-color: #dce1eb;
    color: rgb(67, 32, 0);
    border: none;
    text-align: center;
    font-size: 30px;
    font-family: 'Rubik', sans-serif;
    margin-inline: 10px;
}

#add-button {
    height: 70px;
    width: 90vw;
    border-radius: 15px;
    border: none;
    text-align: center;
    color: white;
    background-color: #479074;
    margin-top: 20px;
    font-size: 30px;
    font-family: 'Rubik', sans-serif;
    cursor: pointer;
}

ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    gap: 20px;
    padding-inline: 30px;
    margin-top: 30px;
}

ul li {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    font-size: 30px;
    border-radius: 15px;
    background-color: #e8fcf3;
    box-shadow: 0px 1px 4px rgba(255, 255, 255, 0.2);
    padding-inline: 30px;
    color: rgb(0, 0, 0);
    cursor: pointer;
}

p {
    color: rgb(213, 212, 212);
    font-size: 20px;
}
