<div class="preformatted">
   `,.      .   .        *   .    .      .       ..          .
     \,~-.         *           .    .      <span class="moon"> ☽ </span>       *    .
          \ *          .   .   |    *  . .       .      .  .  ,
 ,           `-.  .            :               *           ,-
  -             `-.        *._/_\_.       .       .   ,-'
  -                 `-_.,     |n|     .      .       ;
    -                    \ ._/_,_\_.  .          . ,'         ,
     -                    `-.|.n.|      .   ,-.__,'         -
      -                   ._/_,_,_\_.    ,-'              -
      -                     |..n..|-`'-'                -
       -                 ._/_,_,_,_\_.                 -
         -               ,-|...n...|                  -
           -         ,-'._/_,_,_,_,_\_.              -
             -  ,-=-'     |....n....|              -
              -;       ._/_,_,_,_,_,_\_.         -
             ,-          |.....n.....|          -
           ,;         ._/_,_,_,_,_,_,_\_.         -
  `,  '.  `.  ".  `,  '.| n   ,-.   n |  ",  `.  `,  '.  `,  ',
,.:;..;;..;;.,:;,.;:,o__|__o !.|.! o__|__o;,.:;.,;;,,:;,.:;,;;:
 ][  ][  ][  ][  ][  |_i_i_H_|_|_|_H_i_i_|  ][  ][  ][  ][  ][
                     |     //=====\\     |
                     |____//=======\\____|
 gpyy                    //=========\\
------------------------------------------------
</div>
<style>
	.preformatted {
    font-family: monospace;
    white-space: pre;
    line-height: 1.3;
    font-size: 10px;
    margin: 0 auto;
    position: relative;
}
.moon {
  color: #ffb909;
  position: relative;
  z-index: 1;
}
.moon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
  rgba(255,255,150,0.6) 10%,
  rgba(255,200,0,0.2) 50%,
  rgba(255,255,150,0) 90%
);
  filter: blur(15px);
  animation: moonGlow 10s infinite alternate;
  z-index: -1;
}
@keyframes moonGlow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
}
</style>