.title {
  animation: text-color-epilepsy 0.5s infinite ease-in-out;
}
body {
  background-color: #9e9e9e;
}
img {
  max-width: 50%;
  height: auto;
}
p {
  animation: text-color-epilepsy 0.5s infinite ease-in-out;
  font-size: 30px;
}

button {
  border-radius: 10px;
  background-color: #000000; /* Green */
  border: none;
  color: #ffffff;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
}
@keyframes text-color-epilepsy {
  0% {
    color: blue;
  }
  25% {
    color: green;
  }
  50% {
    color:red;
  }
  75% {
    color: yellow;
  }
  100%: {
    color: blue;
  }
}

