body {
  background-color: grey;
  font-family: Arial, sans-serif;
  place-items: center;
  display: grid;
  height: 95vh;
  background-image: url(../images/vecteezy_defocused-or-blur-with-bokeh-background-of-garden-trees-in_34128929.jpg);

}
.container {
  background-color: white;
  width: 550px;
  height: 700px;
  border-radius: 30px;
  position: relative;
}
.pic > img {
  height: 350px;
  width: 510px;
  object-fit: cover;
  border-radius: 20px;
  margin: 16px 20px 0px 20px;
}
.pic {
  position: relative;
}
.pic i {
  position: absolute;
  bottom: 15px;
  font-size: 24px;
  cursor: pointer;
  background-color: white;
  padding: 8px;
  border-radius: 50px;
}

/* Thumbs-up left side par */
.pic i.fa-thumbs-up {
  right: 90px;
}

/* Heart right side par */
.pic i.fa-heart {
  right: 30px;
}
.forrent {
  position: relative;
}
.forrent > button {
  position: absolute;
  bottom: 15px;
  left: 30px;
  padding: 4px 30px 4px 30px;
  border-radius: 30px;
  background-color: #e1e9fc;
  color: #0853a2;
  border: none;
}
.forrent > button > label {
  font-weight: bold;
  font-size: large;
}
.content {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.content > span {
  font-size: x-large;
  font-weight: bold;
  margin-left: 20px;
}
.right-content {
  margin-right: 20px;
}
.right-content > button {
  display: flex;
  text-align: center;
  align-items: center;
  border: 1px solid grey;
  font-size: large;
  border-radius: 20px;
  gap: 10px;
}
.details {
  margin: 12px 0px 0px 20px;
}
.details > label {
  font-size: x-large;
}
.details > p {
  color: grey;
}
.details > button {
  color: grey;
  background-color: white;
  border: none;
  margin: 0px 16px 0px 0px;
  font-size: medium;
}
.details > button > i {
  margin: 0px 4px 0px 0px;
}
.contact-information {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  position: absolute;
  bottom: 20px;
  width: 95%;
  background-color: #f6f6f6;
  border-radius: 20px;
}
.information {
  display: flex;
  align-items: center;
  gap: 20px;
}
.text > label {
  font-size: large;
}
.text > p {
  color: grey;
  margin: 0px;
}
.information > img {
  width: 60px;
}
.cta > button {
  padding: 20px;
  background-color: #daf5e9;
  border-radius: 50px;
  border: 4px solid #d2e7de;
}

/* ------------------ Responsive ------------------ */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }

  .pic i.fa-thumbs-up {
    right: 50px;
  }

  .pic i.fa-heart {
    right: 10px;
  }

  .content {
    flex-direction: column;
    align-items: flex-start;
  }

  .right-content > button {
    margin-top: 6px;
  }

  .contact-information {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .content > span {
    font-size: 1.1rem;
  }

  .details > label {
    font-size: 1rem;
  }

  .details > p {
    font-size: 0.8rem;
  }

  .right-content > button {
    font-size: 0.8rem;
  }

  .pic i {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .forrent > button {
    padding: 4px 12px;
    font-size: 0.8rem;
  }

  .contact-information {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cta > button {
    margin-top: 6px;
    width: 100%;
  }
}
