:root{--page-title-display:none;}/* Start custom CSS */.blob {
  position: fixed;
  top:calc(30vh - 200px) ;
  left:-133px;
  opacity: 0.3;
  width: 400px;
  aspect-ratio: 1/1;
  animation: animate 10s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite
    alternate forwards;
  filter: blur(40px);
  z-index: -100;
  background: linear-gradient(
    47deg,
    rgba(153, 45, 55, 0.66) 21%,
    rgba(153, 45, 55, 1) 67%,
    rgba(153, 45, 55, 0.33) 81%
  );

  /*  Optional  */
  /*   box-shadow: inset 50px 50px 17px 0px #ff588b,
    inset 100px 100px 17px 0px #66319f; */
}

@keyframes animate {
  0% {
    translate: 40% -25%;
    border-radius: 60% 40% 30% 70% / 100% 85% 92% 74%;
  }
  50% {
    translate: 0% 13%;
    border-radius: 20% 71% 47% 70% / 81% 15% 22% 54%;
    rotate: 41deg;
    scale: 1.15;
  }
  100% {
    translate: -45% 39%;
    border-radius: 100% 75% 92% 74% / 60% 80% 30% 70%;
    rotate: -60deg;
    scale: 1.05;
  }
}/* End custom CSS */