@import url("https://fonts.googleapis.com/css2?family=Baskervville+SC&display=swap");
body {
  margin: 0;
  padding: 0;
  background: #3e0000;
}

h1 {
  color: #fff;
  font-family: "Baskervville SC", serif;
  font-size: 5em;
  text-align: center;
}

.heart {
  width: 180px;
  height: 100px;
  position: absolute;
  top: 40%;
  left: 40%;
  background: #ff3e3e;
  transition: 1s;
  transform-origin: right bottom;
}

.heart::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 2s;
  transform-origin: right bottom;
}

.heart:hover {
  transform: rotate(45deg);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.heart:hover::before {
  background: #e22c2c;
  transform: rotate(450deg) translateY(100px);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
