/* 
  Neuron noise animation in WebGL.
  Adapted from: https://codepen.io/ksenia-k/pen/vYwgrWv 
*/

neuronnoise-component canvas#neuro {
  /* Parent needs to be relatively sized and will be filled */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  pointer-events: none;
  opacity: 0.5;
}

/* Printing styles */
@media print {
  neuronnoise-component canvas#neuro {
    display: none;
  }
}
