.recette {
  width: 300px;
  height: 500px;
  position: absolute;
}

img {
  position: relative;
  z-index: -1;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.text {
  background-color: white;
  z-index: 2;
  width: 300px;
  height: 100px;
  display: flex;
  box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.15);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 25px;
  border-radius: 30px;
  margin-top: -25px;
  overflow: hidden;
  text-align: center;
}

.coeur {
  z-index: 3;
  position: absolute;
  font-size: xx-large;
  margin-top: -25px;
  margin-left: 125px;
  background-image: url("https://img.icons8.com/ios/50/fa314a/like--v1.png");
  background-repeat: no-repeat;
}

.coeur::before {
  position: absolute;
  z-index: 4;
  display: block;
  width: 50px;
  background-image: url("https://img.icons8.com/ios/50/fa314a/like--v1.png");
  height: 50px;
  content: "";
}

.coeur::after {
  opacity: 0;
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("https://img.icons8.com/ios-filled/50/fa314a/like--v1.png");
  content: "";
}

.coeur:hover::after {
  opacity: 1;
}

.recettedujour {
  position: absolute;
  top: 30px;
  right: 0;
  padding: 7px 5px 7px 10px;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  color: #ff7867;
  text-align: center;
  background-color: #fff;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}

.rond {
  z-index: 1;
  width: 100px;
  height: 100px;
  border-radius: 44px;
  background-color: #fff;
  margin-top: -130px;
  margin-left: 100px;
}

.rond::before {
  content: "";
  position: absolute;
  z-index: 10;
  left: 91px;
  top: 361px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at top left, transparent 18px, #fff 19px);
}
.rond::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 189px;
  top: 361px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at top right, transparent 18px, #fff 19px);
}
