@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300);


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100vh;
  background: #000000
}

.wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 400px;
  margin-left: -200px;
  font: 300 30px/1 'Open Sans Condensed', sans-serif;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  animation: 60s credits linear infinite;
}

.movie {
  margin-bottom: 50px;
  font-size: 50px;
}

.job {
  margin-bottom: 5px;
  font-size: 18px;
}

.name {
  margin-bottom: 50px;
  font-size: 45px;
}

@keyframes credits {
    0% { top:  100%; }
  100% { top: -500%; }
}
a:link, a:visited, a:active  {
 	color: white;
	text-shadow: none;
}
a:hover {
	text-shadow: 2px 2px 3px rgba(1, 1, 1, 1);
}