body {

    color: #f7f7f7;
}
.jumbotron {
    background-image: url("../images/Fab5avatars.png");
    background-size: 100% 100%;
    text-align: center;
}


.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #3399d8 0%,
    #c52a73 29%,
    #ffb813 67%,
    #e7fc00 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: rgb(67, 218, 44);
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 65px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

