body {
  background: rgb(5, 1, 15); /* Make it white if you need */
  text-align: center;
  color: #e6a80b;
  padding: 0 24px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  font-family: 'Times New Roman', Times, serif;
}

.shop {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    border: 2px solid #ddd;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px; /* adjust the margin to your liking */
}

.food-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.food-item {
    margin: 10px;
    width: calc(33.33% - 40px);
    //display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    margin-bottom: 10px;
    margin-left: 10px;  /* Space between the left side of the image and the container */
    margin-right: 10px; /* Space between the right side of the image and the container */
}

.food-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    margin: 10px;
    margin-left: 10px;  /* Space between the left side of the image and the container */
    margin-right: 10px; /* Space between the right side of the image and the container */

}

.add, .remove {
    width: 50px;
    height: 30px;
    border: none;
    border-radius: 25%;
    background-color: #4CAF50;
    color: #fff;
    cursor: pointer;
}

.add:hover, .remove:hover {
    background-color: #3e8e41;
}

.total {
  margin-top: 40px;
  text-align: center;
}

#pay-btn, #menu-btn, #add-btn, #rmv-btn, #back-btn, #back-to-website, #phone, #menu, #location, #clear-order-btn {
    background-color: #28747e;
    width: 80%;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 10px; /* adjust the margin value to your liking */
    margin-top: 10px; /* adjust the margin value to your liking */
}

#pay-btn:hover {
    background-color: #73228b;
}

#menu {
  margin-top: 10px; /* adjust the margin to your liking */
}