*, *:before, *:after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;

html, body {
  display: block;
  position: relative;
  max-width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background-color: white;
}

// confetti canvas
#particle-canvas {
  display: block;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  }
}
