body {
  color: #3f3735;
  font-size: 14px;
}
h2{
    position: relative;
    z-index: 2;
}
.bloc {
  border-radius: 30px;
  box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
  text-align: center;
  position: relative;
  width: 300px;
  cursor: pointer;
}
.bloc a {
  cursor: pointer;
  text-decoration: none;
}
.contenu_menu {
  height: 51px;
  width: 70px;
  top: -16px;
  left: 120px;
  position: absolute;
  z-index: 1;
  margin-top: -15px;
  padding-bottom: 15px;
  border-radius: 50%;
  background: white;
}

/* *************************************************************      Image *********************************************************/

.image_bloc {
  position: absolute;
  max-width: 300px;
  height: auto;
  width: 100%;
  z-index: -5;
}
/* *************************************************************recette du jour ********************************************************/

.titre_bloc {
  position: relative;
  top: -20px;
  background: white;
  border-radius: 22px;
  z-index: 2;
  cursor: pointer;
  color: black;
  padding: 5px 20px;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
}

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

/* *************************************************************        Coeur****************************************************************/
.icon {
  position: relative;
  display: flex;
  justify-content: center;
}
.corazon {
  display: block;
  content: "";
  height: 45px;
  width: 45px;
  background-image: url("https://img.icons8.com/glyph-neue/64/fa314a/hearts.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.corazon::before {
  content: "";
  position: absolute;
  z-index: 10;
  left: -14px;
  top: 13px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at top left, transparent 18px, #fff 19px);
}

.corazon::after {
  display: block;
  content: "";
  height: 45px;
  width: 45px;
  background-image: url(https://img.icons8.com/fluency/48/fa314a/hearts.png);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  /* left: auto;
    right: -14px;
    background: radial-gradient(circle at top right, transparent 18px, #fff 19px); */
}

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