*{
  color: green;
  background-color: burlywood;
  font-family: monospace;
}

p {
  font-size: 30;
  transform:rotate3d(30,650,28,52deg);
  margin-top:150px;
}

h1 {
  font-size: 69;
  transform:scale(2.0,3.0) skew(15deg,3deg);
  transform-origin: left;
  background-color: chartreuse;
  margin:130px;
  text-shadow: magenta 10px 2px;
}

img {
  height: 1000px;
  width: 980px;
  position: absolute;
  top: 780px;
  animation: marquee linear 10s infinite;
}

@keyframes marquee {
  0%{left:-60%;}
  100%{left:100%;}
}