* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

section.container {
  width: 100%;
  height: 100vh;
  background: #ffffff;
  background: linear-gradient(50deg, rgba(255, 255, 255, 1) 40%, rgba(70, 232, 80, 1) 40%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
}

section.container div.card {
  position: relative;
  width: 400px;
  height: 564px;
  background-color: white;
  box-shadow: 8px 10px 20px 0px rgba(0, 0, 0, 0.311);
  border-radius: 6px;
}

/* .product-img-container{
     box-shadow: 1px 1px 1px black;
} */

.product-img {
  width: 100%;
  height: 100%;
  /* filter: hue-rotate(); */
  border-radius: 6px 6px 0px 0px;
}

.product-img-container {
  height: 300px;
}

.icons {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  color: white;
}

.icons p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.price {
  position: absolute;
  background-color: chartreuse;
  padding: 32px 20px;
  border-radius: 50%;
  color: white;
  font-weight: bolder;
  font-size: 1.2em;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  bottom: 50%;
  right: 10px;
}

.card-header-content {
  display: flex;
  justify-content: space-between;

  font-size: 1.2em;
}

.user-image {
  width: 60px;
  border-radius: 50%;
  border: 4px orange solid;
}

.city {
  color: #6b6969bb;
}

.mid-content {
  display: flex;
  justify-content: space-between;

  color: orange;
  font-size: 1.2em;
}

.card-contents {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-btn {
  display: flex;
  justify-content: space-between;
}

.card-btn button {
  border: none;
  font-size: 1.2em;
  padding: 20px 50px;
  background-color: rgb(153, 255, 0);
  color: white;
  cursor: pointer;
  transition: all 0.5s;
  border: 1px solid transparent;
}

.card-btn button:hover {
background-color: white;
color: black;
border: 1px solid black;
}