/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
  .moving-image {
  /* Positions the image absolutely on your page */
  position: absolute;
  /* Adjust this to change where the image sits vertically */
  top: 50%; 
  /* Starts the animation */
  animation: moveAcross 1s linear infinite;
}

@keyframes moveAcross {
  /* Starting point: completely off the left side of the screen */
  0% {
    transform: translateX(-150px);
  }
  /* Ending point: completely off the right side of the screen */
  100% {
    transform: translateX(100vw);
  }
}