html body {
    background-color: #FAF4E6;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 100vh;
    margin: 3rem;
    /* padding: 0; */
    box-sizing: border-box;
}

.borel {
    font-family: "borel";
    margin: 0;
    padding: 0;
    line-height: 1;
    /* Optional */
}

h1 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 8.5vh;
    margin-bottom: 0%;
}

h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 400;
    font-size: 2vh;
    margin-top: 0;
}

h4 {
    font-family: "Bricolage Grotesque", sans-serif;
    margin: 0;
    padding: 0;
}

p {
    font-family: "Poppins";
    font-size: 0.8rem;
    color: #616266;
}

.list {
    font-family: "Poppins";
    font-size: 0.8rem;
    color: #616266;
}

.landing {
    width: 80%;
    text-align: center;
}

#logo {
    width: 10vh;
    margin-bottom: -12%;
    position: absolute;
    transform: translate(-50%, -50%);
}

/* start of code from https://chatgpt.com/ */
.fade-out {
    opacity: 0;
    transition: opacity 1s ease-out;
    pointer-events: none;
}

.app {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.app.visible {
    opacity: 1;
}
/* end of code from https://chatgpt.com/ */

/* end of landing page */

/* start of main app */
.header {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 8px;
    width: 100%;
}

.div1 {
    margin: 0;
    padding: 0;
    margin-bottom: -10%;
}

h2 {
    margin: 0;
    padding: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 3vh;
    font-weight: 400;
}

.div3 {
    margin-top: 0;
    padding: 0;
    padding-top: 20%;
    margin-bottom: -10%;
}

#logoB {
    width: 100%;
}

#logoC {
    width: 100%;
    margin-top: 40%;
}

.header {
    margin: 0;
    padding: 0;
}

/* select menu css */
.menu-item,
.selected-item {
    display: flex;
    flex-direction: column;
    /* Use this to stack vertically */
    background: #EEE8DA;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.menu-list {
    max-height: 500px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 0.5rem;
}

.menu-list::-webkit-scrollbar {
    width: 8px;
}

.menu-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.menu-list {
    scroll-behavior: smooth;
}


.selected-item {
    background: #bcd1f1;
}

.img-placeholder {
    width: 60px;
    height: 60px;
}

.info {
    flex: 1;
    padding: 0 1rem;
    /* width: 60%; */
}

.buttons button {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 999px;
    width: 25px;
    height: 25px;
    /* color: white; */
    cursor: pointer;
}

.top-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.buttons {
    padding-top: -10%;
    align-self: flex-end;
    display: flex;
    gap: 0.5rem;
}

.add {
    background: #9EAD6A;
    color: white;
}

.add:hover{
    background-color: black;
    color: white;
}

.remove {
    background-color: #F8BFE0;
    color: black;
}

.remove:hover{
    background-color: black;
    color: white;
}

.selected-title {
    background: black;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.grocery-item {
    background: #fff6e7;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grocery-item input[type="checkbox"] {
    accent-color: black;
}

div .grocery-item {
    background-color: white;
}