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

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #02030a;
}

#layer1 {
  position: fixed;
  inset: 0;
  z-index: 10;
  cursor: default;
}

#l1-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#l1-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

#l1-toolbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48px;
  background: rgba(4,2,14,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(100,75,185,0.14);
  display: flex;
  align-items: center;
  padding: 0 22px;
  pointer-events: none;
}

#l1-logo {
  height: 24px;
  opacity: 0.76;
  user-select: none;
  -webkit-user-drag: none;
}
