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

body {
  margin: 0;
  min-height: 100dvh;
  background: #08080c;
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
}

header a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

header a:hover {
  color: #fff;
}

main {
  width: 100%;
  height: 100dvh;
  position: relative;
  z-index: 0;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}
