* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  max-width: 480px;
}
header {
  width: 100%;
  background:#39e600;
  height: 100px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 1px 1px #ed9f3a;
  font-size:30px;
}

header h1 {
  text-shadow: 2px 2px 5px #ed9f3a;
}

section {
  width: 100%;
  background: #fffaf0;
  padding-top: 15px;
}

.category {
  margin-bottom: 20px;
}

.categoryHeader {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: black;
  margin-bottom: 10px;
  
}

.categoryImg {
  width: 100px;
  height: 85px;
  background: url(img/salat.png);
  object-fit: cover;
  object-position: center;
  border-radius: 10%;
  margin: 0 30px 0 15px;
}

.categoryContent {
  display: flex;
  flex-direction: column;
}

ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  list-style: none;
}

ul li {
  display: flex;
  align-items: center;
  color: #ff6200;
  border-bottom: 1px dotted #ed9f3a86;
  padding: 10px 0 10px 20px;
  border-radius: 5px;
  margin: 5px 0;
  width: 100%;
  min-height: 55px;
}

.foodInfo {
  width: 72%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.description {
  font-size: 13px;
  padding-left: 10px;
  padding-top: 5px;
  color: orangered;
}

.name {
  width: 72%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 15px;
  color:black;
}

.price {
  width: 27%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  white-space: nowrap;
  color:black;
}
