* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #eee5e4;
  color: #393834;
  font-family: Arial, sans-serif;
  margin: 0 auto;
  width: 68%;
}

.navigation {
  display: flex;
  width: 80%;
  align-items: center;
  justify-content: space-evenly;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #6d6a62;
}
.navigation__title {
  font-size: 2.5rem;
  font-family: "Georgia", serif;
  color: #393834;
  margin-right: 1rem;
}
.navigation__link {
  text-decoration: none;
  color: #393834;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 5px;
  content: "";
}
.navigation__link:hover {
  color: #6d6a62;
}
.navigation__link:hover::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #6d6a62;
}

.product-container {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}
.product-container__item {
  background-color: rgb(247.8522727273, 244.0681818182, 243.6477272727);
  border: 1px solid #6d6a62;
  width: 250px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 2px 2px 5px #6d6a62;
  transition: all 0.3s ease;
}
.product-container__item:hover {
  background-color: #c9c9c9;
  box-shadow: 4px 4px 10px #6d6a62;
}
.product-container__image {
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-container__image--special {
  background-color: #f0e080;
  padding: 10px;
}

.price {
  font-weight: bold;
  color: #393834;
  margin-bottom: 0.5rem;
}
.price--special {
  color: red;
  font-weight: bold;
  font-size: 1.2rem;
}

footer {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #6d6a62;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #393834;
}
footer p {
  margin: 0.3rem 0;
}/*# sourceMappingURL=pop.css.map */