* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 20px 50px;
}
header {
  background: linear-gradient(
    90deg,
    rgba(252, 81, 81, 1) 51%,
    rgba(255, 176, 69, 1) 86%
  );
  color: white;
  border-radius: 20px;
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  select {
    width: 200px;
    height: 40px;
    border-radius: 20px;
    padding: 10px;
  }
}

.product {
  width: 100%;
  height: 100%;
}
.product {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.meal-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  background: #fff;
}

.meal-card:hover {
  transform: scale(1.05);
}

.meal-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
