* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* width */
::-webkit-scrollbar {
  width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #bf4e0b;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  background-color: #bf4d0b0e;
}

header {
  padding: 60px 0 30px 0;
  text-align: center;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.search-container {
  width: 500px;
  text-align: center;
}

.search-container form .search-box input {
  width: 80%;
  padding: 10px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  outline: none;
  border: 1px solid #bf4e0b;
}

.search-container form .search-box button {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 10px 20px;
  cursor: pointer;
  background-color: #bf4e0b;
  border: 1px solid #bf4e0b;
  text-align: center;
  color: #fff;
  outline: none;
}

.search-container form .search-box button:active {
  background-color: red;
  border: 1px solid #bf4e0b;
  outline: none;
}

.meal-container {
  margin: 30px 0;
  text-align: center;
}

.meal-container .meal-row {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.meal-container .meal-row .meal-card {
  width: 300px;
  height: 450;
  margin: 10px;
  border: 1px solid rgba(0, 0, 0, 0.137);
  background-color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.meal-container .meal-row .meal-card .meal-content {
  padding: 30px 10px;
}

.meal-container .meal-row .meal-card img {
  width: 100%;
  height: 250px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.meal-container .meal-row .meal-card button {
  background-color: #bf4e0b;
  color: #fff;
  cursor: pointer;
  border-radius: 100px;
  border: 1px solid #bf4e0b;
  padding: 10px 30px;
  margin: 10px 0 0 0;
}

.meal-container .meal-row .meal-card button:active {
  background-color: red;
}

.recipe-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px 20px 20px 20px;
  display: none;
}

.recipe-details-container {
  text-align: center;
  width: 90%;
  height: auto;
  padding: 20px;
  border: 1px solid #bf4e0b;
  background-color: #bf4e0b;
  border-radius: 10px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.recipe-details-container p {
  margin: 10px;
  font-size: 1.1rem;
}

.recipe-details-container img {
  width: 20%;
  border-radius: 300px;
  margin-bottom: 10px;
}

.recipe-details-container button {
  background-color: #fff;
  color: #bf4e0b !important;
  padding: 9px 25px;
  border-radius: 100px;
  cursor: pointer;
  font-weight: bold;
  border: 1px solid #bf4e0b;
}

.recipe-details-container button:active {
  background-color: rgba(255, 255, 255, 0.808);
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}

footer ul li {
  display: inline-block;
  margin: 0 10px;
}

footer ul li a {
  text-decoration: none;
  font-size: 1.3rem;
  color: #494949;
}

.message {
  text-align: center;
  font-size: 0.7rem;
  color: #9b3f3f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px;
}

#btn-cut {
  margin-top: 10px;
  cursor: pointer;
}

.hints ul li {
  display: inline-block;
  margin: 5px;
  font-weight: bold;
  color: #727272;
}
/*# sourceMappingURL=style.css.map */