html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.count-particles {
    background: #001222;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #ff0000;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
  }
  
  .js-count-particles {
    font-size: 1.1em;
  }
  
  #stats,
  .count-particles {
    -webkit-user-select: none;
    margin-top: 5px;
    margin-left: 5px;
  }
  
  #stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
  }
  
  .count-particles {
    border-radius: 0 0 3px 3px;
  }
  
  .particles-js-canvas-el {
    width: 100% !important;
    height: 100% !important;
    display: block;
  }
  
  /* ---- particles.js container ---- */
  
  #particles-js {
    width: 100%;
    height: 100%;
    /* max-height: calc(100vh - 80px); */
    background-color: #001222;
    background-image: url('');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #particles-js canvas {
    height: 100%;
  }

  #particle-js-fallback {
    background-color: #001222;
    width: 100%;
    height: calc(100vh - 80px);
  }

  @media (max-width: 576px) {
    #particles-js {
        padding: 4.5rem 0;
    }
  }

  @media (min-width: 576px) and (max-width: 992px) {
    #particles-js {
        padding: 4rem 0;
    }
  }