#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  #globe-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 600px;
    z-index: 1;
  }

  .globe-container {
    perspective: 1000px; /* Create a 3D perspective */
  }
  
  .globe {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: url('https://upload.wikimedia.org/wikipedia/commons/8/83/Equirectangular_projection_SW.jpg');
    background-size: cover;
    animation: rotate 10s linear infinite;
    transform-style: preserve-3d;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  }
  
  /* Animation for rotation */
  @keyframes rotate {
    from {
      transform: rotateY(0deg);
    }
    to {
      transform: rotateY(360deg);
    }
  }
  
  