body {
  font-family: Arial, sans-serif;
  background-color:rgb(240, 205, 160);
}
body header img {
  width: 100%;
  height: 200px;
  border-radius: 0px 30%;
}
#welcome-message {
  display: none; 
  font-size: 30px;
  font-weight: bold;
  color: rgb(134, 4, 69); 
  text-align: center;
  margin-top: 20px;
}


h1 {
  font-family: cursive;
  text-align: center;
  color: #2e6848;
  text-shadow: 2px 2px 4px #88cca6;
  font-weight: bold;
  background-color: rgba(226, 112, 198, 0.39);
  padding: 15px 10px;
  border-radius: 0px 30%;
  border: 2px solid rgb(224, 53, 144);
}

.button-link {
  display: inline-block;
  font-weight: 800;
  font-size: 30px;
  background: none;
  border: none;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.button-link:hover {
color: #ffcc00;
}


h3{
  color: #2e6848;
  font-style: italic;
  margin: 20px;
  cursor: pointer;
}
.container {
  display: flex;
  flex-direction: column;
  margin-top: -1%;
  gap: 20px;
}

.card {
  width: 100%;
  background-color: #9fd6b8;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px solid rgb(224, 53, 144);

  display: flex;
}

.card img {
  padding: 10px;
  height: 230px;
  border-radius: 30px;
  display: block;
}
h2 {
  text-align: center;
  font-family: cursive;
  margin-top: 5px;
}

.desc {
  font-family: cursive;
  margin-top: 0;
}
.price {
  font-family: cursive;
  margin-top: 0;
  color: purple;
  font-weight: bold;
}
.rating {
  font-family: cursive;
  margin-top: 0;
}
.wrapper h2 {
  text-align: left;
}
.flex {
  display: flex;
  justify-content: space-between;
}

.wrapper {
  margin: 0 16px;
}

.star {
  font-size: 24px;
  cursor: pointer;
  color: #ccc; /* Default color */
  transition: color 0.2s ease-in-out;
}

.star:hover,
.star.selected {
  color: #ffcc00; /* Highlight color for selected stars */
}

@media (max-width: 768px) {
  .card {
    display: flex;
    flex-direction: column;
  }
  .card img {
    width: 70%;
    height: 100%;
    margin: 0 auto;
  }
  
}

@media (max-width: 450px) {
  .card img {
    width: 90%;
    height: 100%;
    margin: 0 auto;
  }

}
