/* 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: comic;
}
/* Custom tag for Blink effect */
.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Custom tag for Marquee effect */
.marquee {
    white-space: nowrap;
    overflow: hidden;
    animation: marquee 5s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Style for demonstration purposes */
.blink, .marquee {
    display: inline-block;
    padding: 5px;
    border: 1px solid #000;
}