* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.navbaar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  background-color: rgb(181, 75, 36);
}
.logo {
  padding-left: 50px;
}
.logo img {
  height: 80px;
  width: 80px;
}
.headbar {
  align-items: center;
  padding-right: 40px;
}
.headbar ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  gap: 35px;
}
.headbar ul li a span {
  color: yellow;
}
.headbar ul li a {
  text-decoration: none;
  color: white;
}
.products {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 40px 50px 0 50px;
  gap: 10px;
  margin-bottom: 75px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.03);
}
.box {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  width: 250px;
}
.box img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}
.box h1 {
  font-size: 16px;
  padding-top: 20px;
  line-height: 1.2;
  font-weight: 450;
}
.price {
  color: red;
  font-weight: 500;
  margin-top: 30px;
}
.bottom {
  background-color: rgb(181, 75, 36);
  height: 80px;
  color: white;
}
.bottom p {
  text-align: center;
  padding-top: 30px;
}
