* {
  margin: 0%;
  box-sizing: border-box;
  /* font-family: montserrat, verdana, sans-serif; */
  font-family: "Quintessential", serif;
  font-weight: bolder;
  padding: 0%;
  font-style: normal;
}

html,
body {
  height: 100vh;
  height: 100dvh;
  position: relative;
  overflow-x: hidden;
  /* overflow-y: hidden; */
}

body {
  background: #f8ffe5;
  padding: 20px;
  min-height: auto;
  display: flex;
  flex-direction: column;
}

.reviews-section {
  width: 500px;
  margin: auto;
  margin-top: 0px;
  color: #f8ffe5;
  background-color: #018163;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.1);
}

.review-card {

  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.review-card p {
  margin: 0;
  font-size: 16px;
}

.review-card span {
  font-size: 14px;
  color: #f8ffe5;
}

#reviewBtn {
  margin-top: 15px;
  padding: 10px 15px;
  background: #05b989;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: border-radius 0.1s ease-in-out;
  cursor: pointer;
}

#reviewBtn:hover {
  background: #05b989;
  border-radius: 25px;
}

#reviewForm {
  margin-top: 15px;
}

#reviewForm textarea {
  /* width: 100%; */
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#reviewForm button {
  padding: 8px 12px;
  background: #05b989;
  color: #fff;
  border: none;
  transition: border-radius 0.1s ease-in-out;
  border-radius: 5px;
  cursor: pointer;
}

#reviewForm button:hover {
  border-radius: 25px;
}

footer {
  width: 100%;
  text-align: center;
  line-height: 32px;
  background-color: #018163;

  color: #FFFFFF;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

}
@media(max-width: 768px) {
  body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url("assets/lotus-bg.jpg");
      image-resolution: from-image;
      background-size: cover;
      background-position: center;
      /* background: rgba(0, 0, 0, 0); */
      z-index: -1;
  }
  .reviews-section {
    width: 350px;
  }
  footer {
    font-size: 70%;
  }
}  