/* reset styles */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  color-scheme: dark light;
}
body {
  overflow: hidden;
}

/* styling */
.wrapper {
  width: 100%;
  height: max-content;
  position: relative;
}
.content {
  font-family: "Inter", sans-serif;
  position: absolute;
  z-index: 99;
  width: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* select h1 inside .content */
  & h1 {
    text-align: center;
    font-size: 2rem;
    background-image: linear-gradient(to bottom right, white, rgb(64, 64, 64));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    @media screen and (width >= 768px) {
      font-size: 3.5rem;
    }

    @media screen and (width >= 1024px) {
      font-size: 4.2rem;
    }
  }
}
#canvas {
  width: 100%;
  height: 100%;
}
