:root {
  color-scheme: light;
  --paper: #f7f7f4;
  --ink: #252525;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "EScape Arial", Arial, Helvetica, sans-serif;
}

.cover {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.cover__figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #050505;
}

#volume-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#volume-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@supports (height: 100dvh) {
  .cover {
    height: 100dvh;
    min-height: 100dvh;
  }
}
