/* reset our CSS */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

/* canvas */
.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#sketch {
  /* aspect ratio and width are set in sketch.js */
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sketch canvas {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

canvas {
  display: block;
  touch-action: none;
}

/* instructions */
.wrapper {
  z-index: 1;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: fit-content;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.instructions {
  color: white;
  background: rgba(0, 0, 0, 1);
  padding-right: 1rem !important;
  border-radius: 1rem;
  line-height: 130%;
}