/* CSS files add styling rules to your content */
* {
  box-sizing: border-box;
}

body {
  font-family: "Benton Sans", "Helvetica Neue", helvetica, arial, sans-serif;
  background: #248;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 2rem;
  flex-direction: column;
  color: #fff;
  gap:calc((100vh - 512px) / 2);
}

a{
  color: #fff;
  font-size: .8rem;
}

h1 {
  font-style: italic;
  color: #373fff;
}

canvas {
  max-width: 90vw;
  max-height: 80vh;
  display: block;
}

html, body {
  margin: 0;
  height: 100%;
}

div {
  display: flex;
  max-width: 512px;
  gap: 10vw;
}

input {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
  user-select: none
}