<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  padding: 0;
  margin: 0;
}

.main {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  text-align: center;
  overflow: hidden;
  font-size: 14px;
  background-color: #825fa3;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.stage {
  width: 20em;
  height: 20em;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}
.stage .ghost-shadow {
  background-color: #825fa3;
  position: absolute;
  width: 9em;
  left: 50%;
  margin-left: -4.5em;
  bottom: 1.5em;
  background-color: #343534;
  border-radius: 50%;
  height: 0.5em;
  -webkit-animation: shadow 0.8s ease-in-out infinite alternate;
          animation: shadow 0.8s ease-in-out infinite alternate;
  z-index: 9;
}

.ghost {
  width: 8em;
  height: 10.5em;
  background-color: #f0efda;
  border-radius: 45% 45% 0% 0%;
  position: relative;
  -webkit-animation: move 0.8s ease-in-out infinite alternate;
          animation: move 0.8s ease-in-out infinite alternate;
  z-index: 9;
}
.ghost .skirt {
  position: absolute;
  width: 100%;
  left: 50%;
  bottom: 0;
  display: flex;
  transform: translate(-50%, 50%);
}
.ghost .skirt .pleat {
  flex: 1;
  height: 0.9em;
  border-radius: 100%;
}
.ghost .skirt .pleat.up {
  background-color: #825fa3;
  position: relative;
  top: 1px;
}
.ghost .skirt .pleat.down {
  background-color: #f0efda;
}
.ghost .eye {
  width: 0.9em;
  height: 1.4em;
  background: black;
  border-radius: 44%;
  position: absolute;
  top: 3em;
  -webkit-animation: blinking 7.5s linear infinite alternate;
          animation: blinking 7.5s linear infinite alternate;
}
.ghost .eye.left {
  left: 1.8em;
}
.ghost .eye.right {
  right: 1.8em;
}
.ghost .cheek {
  width: 1.2em;
  height: 0.5em;
  border-radius: 45%;
  background-color: #f77674;
  position: absolute;
  top: 4.8em;
  left: 1em;
  box-shadow: 4.9em 0 0 #f77674;
}
.ghost .eat {
  transform-origin: 50% 50%;
  -webkit-animation: eat 2s linear infinite alternate;
          animation: eat 2s linear infinite alternate;
}
.ghost .left.hand {
  width: 2.1em;
  height: 1.4em;
  position: absolute;
  border-width: 2px;
  border-style: solid;
  top: 6.5em;
  left: 1.3em;
  background-color: #f0efda;
  border-radius: 25% 50% 50% 25%;
  border-color: #825fa3 #825fa3 #825fa3 transparent;
  transform: rotate(30deg);
}
.ghost .right.hand {
  width: 2.1em;
  height: 1.4em;
  position: absolute;
  border-width: 2px;
  border-style: solid;
  top: 6.5em;
  right: 0.3em;
  background-color: #f0efda;
  border-radius: 25% 50% 50% 25%;
  border-color: #825fa3 #825fa3 #825fa3 transparent;
  transform: rotate(70deg);
}
.ghost .sugar {
  width: 3px;
  height: 3em;
  background-color: #ffb23d;
  position: absolute;
  transform: rotate(32deg);
  top: 5.9em;
  left: 2.7em;
  -webkit-animation: sugar 2s linear infinite alternate;
          animation: sugar 2s linear infinite alternate;
}
.ghost .sugar::before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  position: absolute;
  top: 0;
  margin-top: -1.6em;
  left: 50%;
  margin-left: -0.9em;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, #f0ad2d 0%, #f0ad2d 20%, #28b546 30%, #28b546 50%, #4f4196 60%, #4f4196 90%);
}
.ghost .mouth {
  position: absolute;
  top: 4.5em;
  left: 50%;
  margin-left: -1.5em;
  width: 3em;
  height: 1.2em;
}
.ghost .mouth::before {
  left: -0.2em;
  border: 3px solid;
  border-color: transparent transparent black transparent;
  border-radius: 50%;
  transform: rotate(-15deg);
}
.ghost .mouth::after {
  right: -0.2em;
  border: 3px solid;
  border-color: transparent transparent black transparent;
  border-radius: 50%;
  transform: rotate(15deg);
}
.ghost .mouth::before,
.ghost .mouth::after {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  background-color: #f0efda;
  width: 2em;
  height: 1.2em;
}

.stars {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.stars .star.circle {
  position: absolute;
  -webkit-animation: twinkle 2s infinite linear;
          animation: twinkle 2s infinite linear;
}
.stars .star.circle .star-element {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.stars .star.circle .star-element::before, .stars .star.circle .star-element::after {
  content: "";
  display: none;
}
.stars .star {
  position: absolute;
  -webkit-animation: twinkle 2s infinite linear;
          animation: twinkle 2s infinite linear;
}
.stars .star:nth-of-type(1) {
  background: #eeb64e;
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
  left: 18%;
  top: 51%;
}
.stars .star:nth-of-type(2) {
  background: #f3c97c;
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
  left: 64%;
  top: 15%;
}
.stars .star:nth-of-type(2) .star-element {
  transform: scale(1.4);
}
.stars .star:nth-of-type(3) {
  background: #fc9385;
  -webkit-animation-delay: -3.2s;
          animation-delay: -3.2s;
  left: 39%;
  top: 16%;
}
.stars .star:nth-of-type(3) .star-element {
  transform: scale(1.2);
}
.stars .star:nth-of-type(4) {
  background: #ff7664;
  -webkit-animation-delay: -1.2s;
          animation-delay: -1.2s;
  left: 77%;
  top: 31%;
}
.stars .star:nth-of-type(4) .star-element {
  transform: scale(1.1);
}
.stars .star:nth-of-type(5) {
  left: 18%;
  top: 32%;
  border-radius: 50%;
  background-color: #83d0d0;
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}
.stars .star:nth-of-type(5) .star-element {
  transform: scale(1.2);
}
.stars .star:nth-of-type(6) {
  left: 80%;
  top: 48%;
  border-radius: 50%;
  background-color: #83a4d0;
  -webkit-animation-delay: -1.8s;
          animation-delay: -1.8s;
}
.stars .star .star-element {
  width: 6px;
  height: 6px;
  background-color: inherit;
}
.stars .star .star-element::before, .stars .star .star-element::after {
  content: "";
  display: block;
  background-color: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 6px;
}
.stars .star .star-element::before {
  height: 6px;
  width: 8px;
  transform: translate(-50%, -50%) skewX(60deg);
}
.stars .star .star-element::after {
  height: 6px;
  width: 8px;
  transform: translate(-50%, -50%) skewY(-60deg);
}

@-webkit-keyframes twinkle {
  0% {
    transform: rotate(0deg) scale(1, 1);
  }
  25% {
    transform: rotate(10deg) scale(0.8, 0.8);
  }
  50% {
    transform: rotate(0deg) scale(0.9, 0.9);
  }
  75% {
    transform: rotate(-20deg) scale(0.6, 0.6);
  }
  100% {
    transform: rotate(0deg) scale(1, 1);
  }
}

@keyframes twinkle {
  0% {
    transform: rotate(0deg) scale(1, 1);
  }
  25% {
    transform: rotate(10deg) scale(0.8, 0.8);
  }
  50% {
    transform: rotate(0deg) scale(0.9, 0.9);
  }
  75% {
    transform: rotate(-20deg) scale(0.6, 0.6);
  }
  100% {
    transform: rotate(0deg) scale(1, 1);
  }
}
@-webkit-keyframes blinking {
  0%, 40%, 50% {
    -webkit-clip-path: ellipse(100% 100% at 50% 48%);
            clip-path: ellipse(100% 100% at 50% 48%);
  }
  60%, 100% {
    -webkit-clip-path: ellipse(100% 5% at 50% 48%);
            clip-path: ellipse(100% 5% at 50% 48%);
  }
}
@keyframes blinking {
  0%, 40%, 50% {
    -webkit-clip-path: ellipse(100% 100% at 50% 48%);
            clip-path: ellipse(100% 100% at 50% 48%);
  }
  60%, 100% {
    -webkit-clip-path: ellipse(100% 5% at 50% 48%);
            clip-path: ellipse(100% 5% at 50% 48%);
  }
}
@-webkit-keyframes eat {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(6deg) translateX(8px) translateY(5px);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes eat {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(6deg) translateX(8px) translateY(5px);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes move {
  0% {
    top: 0;
  }
  50% {
    top: 0.5em;
  }
  100% {
    top: 0;
  }
}
@keyframes move {
  0% {
    top: 0;
  }
  50% {
    top: 0.5em;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes shadow {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0.93);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes shadow {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0.93);
  }
  100% {
    transform: scaleX(1);
  }
}</pre></body></html>