body {
    background-image: url("/assets/images/star.gif");
}

#planet-div {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 200vh;
    overflow: hidden;
  }
  
  .floating {
    position: absolute;
    animation: floatAnimation infinite ease-in-out;
    width: 150px;
  }
  
  #planet1 {
    top: 10%; left: 10%;
    animation-duration: 3s;
  }
  
  #planet2 {
    top: 20%; left: 70%;
    animation-duration: 1s;
  }
  
  #planet3 {
    top: 50%; left: 50%;
    animation-duration: 6s;
  }
  
  #planet4 {
    top: 70%; left: 20%;
    animation-duration: 8s;
  }
  
  #planet5 {
    top: 80%; left: 80%;
    animation-duration: 4s;
  }

  #planet6 {
    top: 40%; left: 30%;
    animation-duration: 3s;
  }

  #planet7 {
    top: 25%; left: 30%;
    animation-duration: 3s;
  }

  #planet8 {
    top: 63%; left: 80%;
    animation-duration: 2s;
  }

    #planet9 {
    top: 43%; left: 70%;
    animation-duration: 2s;
  }
  
  @keyframes floatAnimation {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0);
    }
  }  