/*
Based on the great article on Codrops
https://tympanus.net/codrops/2019/01/17/interactive-particles-with-three-js/
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
}

#container {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/* Stats.js panel styling */
#stats {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}