body{
    overflow-x: hidden;
}
*{
    margin: 0;
    padding: 0;
}
/* galaxy */
#galaxy {
  z-index: -999999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #03092b;
  -webkit-transition: background 0.8s ease-out;
  -moz-transition: background 0.8s ease-out;
  -o-transition: background 0.8s ease-out;
  -ms-transition: background 0.8s ease-out;
  transition: background 0.8s ease-out;
  background-position: fixed ;
}

#galaxy,
#galaxy .bg {
  width: 100%;
  height: 100%;
  background-position: fixed ;
}

#galaxy * {
  position: absolute;
  background-attachment: fixed;
  background-position: fixed ;
}

#galaxy .bg {
  /* background: url('https://raw.githubusercontent.com/gurde/css3-animated-galaxy/master/img/bg.jpg') no-repeat 50% 50%; */
}

#galaxy .bg.center {
  top: 50%;
  left: 50%;
  width: 400px;
  height: 200px;
  margin: -100px 0 0 -200px;
  opacity: 0.8;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
}

#galaxy [class^=stars] {
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
}

#galaxy .stars-back {
  background: url("https://raw.githubusercontent.com/gurde/css3-animated-galaxy/master/img/back.png");
  -webkit-animation: orbit-clock-wise 440s infinite linear;
  -moz-animation: orbit-clock-wise 440s infinite linear;
  -o-animation: orbit-clock-wise 440s infinite linear;
  -ms-animation: orbit-clock-wise 440s infinite linear;
  animation: orbit-clock-wise 440s infinite linear;
}

#galaxy .stars-middle {
  background: url("https://raw.githubusercontent.com/gurde/css3-animated-galaxy/master/img/middle.png");
  -webkit-animation: orbit-counter-clock-wise 360s infinite linear;
  -moz-animation: orbit-counter-clock-wise 360s infinite linear;
  -o-animation: orbit-counter-clock-wise 360s infinite linear;
  -ms-animation: orbit-counter-clock-wise 360s infinite linear;
  animation: orbit-counter-clock-wise 360s infinite linear;
}

#galaxy .stars-front {
  background: url("https://raw.githubusercontent.com/gurde/css3-animated-galaxy/master/img/front.png");
  -webkit-animation: orbit-clock-wise 160s infinite linear;
  -moz-animation: orbit-clock-wise 160s infinite linear;
  -o-animation: orbit-clock-wise 160s infinite linear;
  -ms-animation: orbit-clock-wise 160s infinite linear;
  animation: orbit-clock-wise 160s infinite linear;
}

@-webkit-keyframes orbit-clock-wise {
  0% {
    opacity: 0.4;
    -webkit-transform: rotate(0deg);
  }
  2% {
    opacity: 0.8;
  }
  4% {
    opacity: 0.2;
  }
  5% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.4;
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes orbit-counter-clock-wise {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes orbit-clock-wise {
  0% {
    opacity: 0.4;
    -moz-transform: rotate(0deg);
  }
  2% {
    opacity: 0.8;
  }
  4% {
    opacity: 0.2;
  }
  5% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.4;
    -moz-transform: rotate(360deg);
  }
}
@-moz-keyframes orbit-counter-clock-wise {
  from {
    -moz-transform: rotate(360deg);
  }
  to {
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes orbit-clock-wise {
  0% {
    opacity: 0.4;
    -o-transform: rotate(0deg);
  }
  2% {
    opacity: 0.8;
  }
  4% {
    opacity: 0.2;
  }
  5% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.4;
    -o-transform: rotate(360deg);
  }
}
@-o-keyframes orbit-counter-clock-wise {
  from {
    -o-transform: rotate(360deg);
  }
  to {
    -o-transform: rotate(0deg);
  }
}
@-ms-keyframes orbit-clock-wise {
  0% {
    opacity: 0.4;
    -ms-transform: rotate(0deg);
  }
  2% {
    opacity: 0.8;
  }
  4% {
    opacity: 0.2;
  }
  5% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.4;
    -ms-transform: rotate(360deg);
  }
}
@-ms-keyframes orbit-counter-clock-wise {
  from {
    -ms-transform: rotate(360deg);
  }
  to {
    -ms-transform: rotate(0deg);
  }
}
@keyframes orbit-clock-wise {
  0% {
    opacity: 0.4;
    transform: rotate(0deg);
  }
  2% {
    opacity: 0.8;
  }
  4% {
    opacity: 0.2;
  }
  5% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.4;
    transform: rotate(360deg);
  }
}
@keyframes orbit-counter-clock-wise {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
/* galaxy end */