

canvas:nth-child(n + 2):nth-child(-n + 3) {
    display: none !important;
  }

  canvas:nth-child(n + 12):nth-child(-n + 2) {
    left: 110px;
  }

  #loading {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #020214;
    z-index: 999;
    text-align: center;
    vertical-align: middle;
  }

  .pulse {
    animation: pulse 1s infinite ease-in-out alternate;
    width: 120px;
    position: relative;
    top: 40%;
  }

  @keyframes pulse {
    from {
      transform: scale(0.8);
    }
    to {
      transform: scale(1.2);
    }
  }

  