:root {
 --orange: #ee5b27;
 --lilac: #e198f4;
  --lime: #99fd0c;
  --blue: #116bfd;
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  }

@font-face {
  font-family: "CabinetGrotesk-Variable";
  src: url("https://assets.codepen.io/16721/CabinetGrotesk-Variable.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: normal;
}



body {
  font-family: "CabinetGrotesk-Variable";
  margin: 0;
  font-family: sans-serif;
}

canvas {
  width: 100vw;
  height: 100vh;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0; 
  bottom: 0;
  width: 100%;
  height: 100%;
    pointer-events: none;
}

h1 {
  font-size: clamp(1.5rem, 1.14rem + 1.8vw, 3rem);
  margin: 0;
  padding: clamp(2rem, 1.64rem + 1.8vw, 3.5rem);
  font-weight: 400;
  line-height: 1.3;
  color: #000;
}
a {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-line: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.35rem;
  pointer-events: auto;
  position: relative;
  z-index:1;
}