html, body {
  height: 100%;
  margin: 0;
}

body {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg,
    #FCE4C5 0%,
    #F5D3B1 15%,
    #ECC9A8 30%,
    #D2AA7B 50%,
    #C58A53 70%,
    #A86F47 85%,
    #8C5A3A 100%);
  background-size: 600% 600%;
  background-attachment: fixed;
  animation: baseFlow 60s ease-in-out infinite;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 0, 150, 0.12),
    rgba(255, 255, 0, 0.12),
    rgba(0, 255, 255, 0.12),
    rgba(0, 150, 255, 0.12),
    rgba(255, 0, 150, 0.12)
  );
  background-size: 300% 300%;
  mix-blend-mode: lighten;
  animation: shimmerFlow 25s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes baseFlow {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@keyframes shimmerFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.parisienne-regular {
  font-family: "Parisienne", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  background: linear-gradient(90deg, #996515, #800000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.heading-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.heading-icon {
  width: 75px;
  height: 75px;
  object-fit: contain;
}