/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
   
   
   
   
   
/* Rainbow animated text */
.rainbow {
  font-size: 42px;
  font-weight: bold;

 background: linear-gradient(90deg,
  red, orange, yellow, lime, cyan, blue, violet, red
);

  background-size: 400%;
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent; /* ← required for many browsers */

  animation: rainbow 20s linear infinite;
}

@keyframes rainbow {
  0%   { background-position: 0% }
  100% { background-position: 400% }
}













.gamer-rainbow {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;

  /* Ultra-saturated RGB gradient */
  background: linear-gradient(
    90deg,
    #ff0000,  /* red */
    #ff0080,  /* hot pink */
    #ff00ff,  /* magenta */
    #8000ff,  /* purple */
    #0000ff,  /* blue */
    #0080ff,  /* neon blue */
    #00ffff,  /* cyan */
    #00ff80,  /* mint */
    #00ff00,  /* green */
    #80ff00,  /* neon lime */
    #ffff00,  /* yellow */
    #ff8000,  /* neon orange */
    #ff0000   /* red again for smooth looping */
  );

  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  animation: gamerRGB 6s linear infinite;

  /* optional glowing aura */
  filter: drop-shadow(0 0 6px #fff)
          drop-shadow(0 0 12px #f0f)
          drop-shadow(0 0 18px #0ff);
}

@keyframes gamerRGB {
  0%   { background-position: 0% 50%; }
  100% { background-position: 500% 50%; }
}




















/*pony overlay*/
/*<img id="overlay" src="https://derpicdn.net/img/2025/10/24/3698762/large.png">*/
  #overlay {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 228px;
    opacity: 0.9;
    pointer-events: none;
    z-index: 1000;
  }




 a.nounderline {text-decoration: none; }




 :root {
    --bg: #101010;
    --fg: #eee;
    --input-bg: #1d1d1d;
    --border: #444;
    --button-bg: #333;
    --button-hover: #555;
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background: var(--bg);
    color: var(--fg);
  }

  label, input, button {
    display: block;
    margin-top: 8px;
  }

   input, select {
    background: var(--input-bg);
    border: 1px solid var(--border);
    padding: 4px;
    color: var(--fg);
  }

  button {
    background: var(--button-bg);
    color: var(--fg);
    border: 1px solid var(--border);
    padding: 8px 14px;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 4px;
  }
  
 button:hover {
    background: var(--button-hover);
  }













