* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: acumin-pro, sans-serif;
}
.wrapper {
  width: 600px;
  height: auto;
  align-items: center;
  justify-content: center;
  display: grid;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.container {
  width: 401px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
}
.options {
  width: 100%;
  height: auto;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn {
  width: 70px;
  height: 40px;
  background: rgb(86, 207, 171);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 20px -1px rgba(204, 204, 204, 1);
  -moz-box-shadow: 0px 0px 20px -1px rgba(204, 204, 204, 1);
  box-shadow: 0px 0px 20px -1px rgba(204, 204, 204, 1);
  transition: 0.3s;
  cursor: pointer;
  padding: 12px 16px;
  font-size: 18px;
}
.body {
  background: green;
}
.btn:hover {
  box-shadow: none;
}
.head {
  background: rgb(86, 207, 171);
}
.box {
  width: 20px;
  height: 20px;
  border: 1px solid black;
}
.food {
  display: flex;
  align-items: center;
  justify-content: center;
  color: red;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
p {
  margin-bottom: 15px;
}

@media only screen and (max-width: 450px) {
  .wrapper {
    width: 100%;
    padding: 0 15px;
  }
  .container {
    width: 100%;
  }
  .options {
    width: 100%;
  }
}
