/* 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: black;
  color: white;
  font-family: Verdana;
  margin: 0
}

.bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
  background-size: 1500px;
}

#space {
  background-image: url("img/parallax-bg/Space.png");
  top: 0;
  background-position: 1px 1px;
  transition: background-position 3s linear
}

#stars {
  background-image: url("img/parallax-bg/Stars.png");
  top: 0;
  background-position: 1px 1px;
  transition: background-position 3s linear;
}

#planets {
  background-image: url("img/parallax-bg/Planets.png");
  top: 0;
  background-position: 1px 1px;
  transition: background-position 3s linear
}