body {
  margin: 0;
  padding: 0;
}

#container {
  position: fixed;
  touch-action: none;
}

.message {
//  background: rgba(255,255,255,.8);
  padding: 0 20px;
  font-family: Helvetica, Arial;
  font-weight: 900
  text-align: justify;
  font-size: 4.3vw;
  position: fixed;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
//  animation: color-change 1s infinite;
}

message:after {
  display: inline-block;
  width: 100%;
}

p {
  margin: 2px;
}

//@keyframes color-change {
//  0% { color: red; }
//  50% { color: blue; }
//  100% { color: red; }
//}

.message {
  overflow: hidden;
  background: linear-gradient(90deg, #000, #888, #000);
  background-repeat: repeat-x;
  background-size: 85%;
  animation: animate 5s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate {
  0% {
    background-position: -600%;
  }
  100% {
    background-position: 600%;
  }
}
