style.css

html, body {
    margin: 0;
    height: 100vh;
    background-color: #111;
  }
  
  #box {
    width: 200px;              /* match your image size */
    height: 200px;
    background-image: url("prairiedog.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform-origin: center;
    transition: transform 0.05s linear;
  }

  .snowflake {
    position: fixed;
    top: -10px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.8;
  }
  
  #neon-text {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Arial', sans-serif;
    font-size: 48px;
    color: rgb(28, 255, 16);
    text-align: center;
    pointer-events: auto;   /* allow clicking */
    cursor: pointer;
    z-index: 10000;

    text-shadow: 0 0 5px rgb(28,255,16), 0 0 10px rgb(28,255,16), 0 0 20px rgb(28,255,16);
    animation: colorCycle 6s linear infinite, neonPulse 1.5s ease-in-out infinite alternate;
  }

  @keyframes colorCycle {
    0%   { color: rgb(255, 52, 52); text-shadow: 0 0 5px rgb(255, 2, 2), 0 0 10px rgb(255, 0, 0), 0 0 20px rgb(255, 0, 0); }
    25%  { color: #ff0; text-shadow: 0 0 5px #ff0, 0 0 10px #ff0, 0 0 20px #ff0; }
    50%  { color: rgb(102, 255, 0); text-shadow: 0 0 5px rgb(4, 255, 0), 0 0 10px rgb(145, 255, 0), 0 0 20px rgb(60, 255, 0); }
    70%  { color: rgb(243, 255, 200); text-shadow: 0 0 5px rgb(248, 255, 154), 0 0 10px rgb(255, 255, 188), 0 0 20px rgb(255, 255, 210); }
    100%  { color: rgb(255, 52, 52); text-shadow: 0 0 5px rgb(255, 2, 2), 0 0 10px rgb(255, 0, 0), 0 0 20px rgb(255, 0, 0); }
  }
  
  #bouncy {
    width: 500px;
    height: 500px;
    cursor: pointer;
    position: fixed; /* optional: allows free placement */
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
  }
  
  @keyframes bounce {
    0%   { transform: translate(-50%, -50%) scale(1); }
    30%  { transform: translate(-50%, -50%) scale(1.2); }
    50%  { transform: translate(-50%, -50%) scale(0.9); }
    70%  { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1); }
  }
  
  .bounce {
    animation: bounce 0.5s ease;
  }

  .spawned-image {
    position: fixed;
    width: 100px; /* match your image size */
    height: auto;
    pointer-events: none;
    animation: popIn 0.3s ease-out forwards;
  }
  
  @keyframes popIn {
    from {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
