@import url("https://fonts.googleapis.com/css?family=Oswald");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Oswald", sans-serif;
  height: 100vh;
  overflow: hidden;
}
body main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main h2 .fa-heart {
  color: red;
}
body main small {
  font-size: 16px;
}
body main small #times {
  font-weight: 700;
}
body main .bg-image {
  background: url("https://imgres.pi7.com/pi7/28/139218-2023101909540665308c3e07833.jpg") no-repeat center center/cover;
  width: 414px;
  height: 414px;
  margin: auto;
  border-radius: 0.375rem;
  cursor: pointer;
  max-width: 100%;
  position: relative;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
body main .bg-image .fa-heart {
  position: absolute;
  color: red;
  animation: grow 0.6s linear;
  transform: translate(-50%, -50%) scale(0);
}

@keyframes grow {
  to {
    transform: translate(-50%, -50%) scale(10);
    opacity: 0;
  }
}/*# sourceMappingURL=heart.css.map */