/* Ensure the canvas and body fully cover the viewport */

body, html {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: 'WestminsterAuto';
  background: black;
  color: white;
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

#matrix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

