body {
  margin: 0;
  background: #ce9966;
  color: #fff;
  font-family: serif;
  font-size: 4rem;
  overflow-x: hidden;
}

/* WebGL canvas */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

/* Foreground scrolling content */
.content {
  position: relative;
  z-index: 1;
}

section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h1, h2 {
  margin: 0 0 1rem;
  font-weight: 600;
}

/* -------- Circle Loader -------- */
#circle-loader{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2147483647;
  pointer-events: none;
  opacity: 1;
  transition: opacity 450ms ease;
}

#circle-loader svg{
  width: 50vh;
  height: 50vh;
  overflow: visible;
}

#circle-loader .track{
  fill: none;
  stroke: rgba(255,255,255,0.25);
  stroke-width: 0.5;
}

#circle-loader .progress{
  fill: none;
  stroke: #EAC697;
  stroke-width: 2;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 60px 60px;
  stroke-dasharray: 326.73;   /* 2πr where r=52 */
  stroke-dashoffset: 326.73;  /* start empty */
 
}
