h1 {
    text-align: center;
    
}
h2{
    text-align: center;
}
h4 {
  text-align: center;
  color: aqua;
}
body {
    background-color: blueviolet;
    font-family: "Comic Sans Custom", cursive;
}

p {
  color: greenyellow;
}

footer {
    text-align: center;
}

@font-face {
  font-family: "Comic Sans Custom";
  src: url("fonts/comic-sans.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.rgb-text {
  font-size: 3em;
  font-weight: bold;
  animation: rgbColor 5s infinite linear;
}

@keyframes rgbColor {
  0%   { color: rgb(255, 0, 0); }   /* red   */
  33%  { color: rgb(0, 255, 0); }   /* green */
  66%  { color: rgb(0, 0, 255); }   /* blue  */
  100% { color: rgb(255, 0, 0); }   /* back to red */
}