@keyframes likeAnimation {
  0% {
    top: 50%;
    transform: scale(0);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    top: 25%;
    transform: scale(0.5);
    transform: translate(-50%, -50%) scale(1.2) rotate(20deg);
  }
  50% {
    top: 0%;
    transform: scale(0.7);
    transform: translate(-50%, -70%) scale(1) rotate(-20deg);
  }
  100% {
    top: 50%;
    transform: translate(-50%, -100%) scale(0.5) rotate(0deg);
    opacity: 0;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

main {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(22, 22, 22, 0.1803921569);
}
main .post-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 35rem;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.5rem;
}
main .post-card .top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-inline-start: 0.5rem;
}
main .post-card .top img {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .post-card .top h2 {
  font-size: 1rem;
  font-weight: 600;
}
main .post-card .post-img {
  position: relative;
  overflow: hidden;
  width: auto;
  background-color: #333;
}
main .post-card .post-img img {
  width: 100%;
}
main .post-card .post-img i {
  position: absolute;
  top: 50%;
  left: 50%;
  background: linear-gradient(to right top, #F37544, #EE3680);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 6rem;
  opacity: 0;
}
main .post-card .post-img i.animate-heart {
  animation: likeAnimation 2s ease;
}
main .post-card .bottom-content {
  padding-inline: 0.5rem;
}
main .post-card .bottom-content h3 {
  font-size: 1rem;
  font-weight: bold;
}
main .post-card .bottom-content h3 span {
  margin-left: 0.4rem;
  font-weight: normal;
}/*# sourceMappingURL=style.css.map */