/* beep */

body { 
  background-color: gray;
  background-size: cover;
  margin-left: 10px
}

#h1 {
  color: #7d0800;
  font-style: italic;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 3px 3px 3px black;
  animation: mySlide;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-duration: 5s;
  
}

@keyframes mySlide{
  from{margin-left: 100%;}
  to{margin-left: 0%;}
}
  
#p1 {
 color: black;
  font-family: "Press Start 2P", "arial";
  font-style: italic;
  
  border-style: solid;
  border-width: 5px;
  border-color: black;
  padding: 5px;
  
   background: linear-gradient(to right, red, black);
  background-repeat: no-repeat;
  background-attachment: fixed;
}


#p2 {
  color: black;
  font-family: "Press Start 2P", "arial";
  font-style: italic;
  
  border-style: solid;
  border-width: 5px;
  border-color: black;
  padding: 5px;
  
   background: linear-gradient(to right, purple, yellow);
  background-repeat: no-repeat;
  background-attachment: fixed;
 
}
