/* 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." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
#myButton {
  background-color: lightblue;
  font-size: 24px;
  padding: 0px 0px;
  
  border-radius: 0px;    /* optional: rounded corners */
  cursor: pointer;       /* cursor changes to pointer on hover */
}
      .marquee-container {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        background: black;
        color: lime;
        font-size: 1.5em;
        font-family: monospace;
        padding: 10px 0;
        box-shadow: 0 4px 10px rgba(0, 255, 0, 0.2);
      }

      .marquee-text {
        display: inline-block;
        padding-left: 100%;
        text-shadow: 0 0 5px lime, 0 0 10px lime, 0 0 20px green;
          animation: scroll-left 12s linear infinite, flicker 1s infinite;
      }
      @keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes flicker {
  0%, 100% {
    color: yellow;
    text-shadow: 0 0 5px lime, 0 0 10px lime;
  }
  50% {
    color: #b6ffb6; /* lighter green */
    text-shadow: 0 0 8px #b6ffb6, 0 0 12px white;
  }
}