.wrapper {
  position: absolute;
  top: 200px;
  left: 50%;
  width: 300px;
  margin-left: -132px;
  font: 300 30px/1 'Open Sans Condensed', sans-serif;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  animation: 60s credits linear infinite;
}

.results {
  margin-bottom: 50px;
  font-size: 50px;
}


@keyframes credits {
  0% {
    top: 50%;
  }
  100% {
    top: -500%;
  }
}