.particle-network-animation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50vh;
  background-color: #031b4e;
  margin-top: 50vh;
  z-index: -1;
}
.particle-network-animation::before {
  z-index: 0;
  content: "";
  position: absolute;
  top: 6%;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('vecteezy_dotted-blue-world-map-illustration-against-a-captivating_29496394.jpg');
  background-position: center center;
  background-size: 100% 100%;
  opacity: 0.18;
  padding: 3%;
 
}

.glow {
  z-index: -1;
  position: fixed;
  top: 25%;
  left: 25%;
  background-image: radial-gradient(circle closest-side, rgba(255, 255, 255, 0.025), transparent);
}

.glow-1 {
  width: 50vw;
  height: 50vh;
  margin-top: 50vh;
  margin-left: 50vh;
  animation: glow-1-move 25s linear infinite both;
}

@keyframes glow-1-move {
  from {
    transform: translate(-100%, 100%);
  }
  to {
    transform: translate(100%, -100%);
  }
}
.glow-2 {
  width: 100vw;
  height: 100vh;
  margin-top: -50vh;
  margin-left: -50vw;
  animation: glow-2-move 25s linear 8.3333333333s infinite both;
}

@keyframes glow-2-move {
  from {
    transform: translate(-100%, 0%);
  }
  to {
    transform: translate(100%, 100%);
  }
}
.glow-3 {
  width: 120vw;
  height: 120vh;
  margin-top: -60vh;
  margin-left: -60vw;
  animation: glow-3-move 25s linear 16.6666666667s infinite both;
}

@keyframes glow-3-move {
  from {
    transform: translate(100%, 100%);
  }
  to {
    transform: translate(0%, -100%);
  }
}