body   { 
   background-color: black;
   background-image: 
 	url("ai.jpg"),	
	linear-gradient(red, yellow);	
   	background-position: 50px 240px;
   	background-repeat: repeat-x;
   	animation: wind 15s linear infinite;		
}

h2	{
   background-color: red;
   text-align: center;
   font-size: 2em;
}

@keyframes wind{
	from { background-position: 0px 240px}
	to { background-position: 2000px 240px}
}

h1	{
  font-size: 6em;
  text-align: center;
  color: yellow;
  background-color: red;
  text-shadow: 
    1px -1px 0 hsla(000, 99%, 50%, 1),
    2px -2px 0 hsla(000, 99%, 55%, 1),
    3px -3px 0 hsla(000, 99%, 60%, 1),
    4px -4px 0 hsla(000, 99%, 65%, 1),
    5px -5px 0 hsla(000, 99%, 70%, 1),
    6px -6px 0 hsla(000, 99%, 75%, 1),
    7px -7px 0 hsla(000, 99%, 80%, 1),
    8px -8px 0 hsla(000, 99%, 85%, 1),
    9px -9px 0 hsla(000, 99%, 90%, 1);
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

div#a {
  margin-top: 200 px;
  font-size: 3em;
  text-align:center;
  }

p {
  margin-top: 200px;
  margin-bottom: 100px;
  margin-right: 150px;
  margin-left: 80px;
  font-size: 3em;
  text-align:center;
}
