/* 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-image: url("bgreal.png");
  text-align: center;
  background-color: white;
  color: white;
  font-family: Verdana;
  animation: bgscroll 120s linear infinite;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

@keyframes bgscroll {
    0% {
        background-position: 0vw 120vh, 0vw 240vh;
    }
    25% {
        background-position: 50vw 90vh, 100vw 160vh;
    }
    50% {
        background-position: 100vw 60vh, 200vw 120vh;
    }
    75% {
        background-position: 150vw 30vh, 300vw 60vh;
    }
    100% {
        background-position: 200vw 0vh, 400vw 0vh;
    }
}

a {
  color: #47E9FF;
}

