:root {
  --font-scale: 0.46;
  --h1-size: calc(99px * var(--font-scale));
  --h2-size: calc(99px * var(--font-scale));
  --p-size: calc(33px * var(--font-scale));
  --color-light-blue: rgb(66, 135, 245);
  --color-blue: rgb(60, 60, 240);

  --body-weight: 400;
  --body-style: normal;
  --body-font: "Inter", sans-serif;
  --bold-weight: 600;
}

html {
  scroll-behavior: smooth;
  /* Safari fallback */
  -webkit-scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--body-weight);
  font-style: var(--body-style);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
canvas {
  display: block;
  touch-action: none;
  cursor: pointer;
}

#container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
}

#info {
  position: absolute;
  top: 0px;
  left: 0px;
  color: #333;
  z-index: 10;
}

h1 {
  font-size: var(--h1-size);
  font-weight: var(--bold-weight);
  color: var(--color-blue);
}

h2 {
  font-size: var(--h2-size);
  font-weight: var(--body-weight);
}

p {
  font-size: var(--p-size);
  max-width: 670px;
}

em {
  font-weight: var(--bold-weight);
  color: var(--color-blue);
}

a {
  /* color: inherit; */
  text-decoration: none;
  cursor: pointer;
  font-weight: var(--bold-weight);
  color: var(--color-blue);
}

a:hover {
  text-decoration: underline;
}

.margin-container {
  margin: 10vh 40px 0 30px;
}

/* Media Query for devices bigger than mobile */
@media (min-width: 768px) {
  :root {
    --font-scale: 1;
  }

  .margin-container {
    margin: 10vh 22vw 10vh 18vw;
  }

  #info {
    /* top: 20px;
    left: 20px; */
  }
}
