@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #f0f0f0 0%, #e8e8e8 50%, #ffffff 100%);
  font-family: Arial, sans-serif;
  background: transparent !important;
}

canvas {
  display: block;
  width: 100%;
  height: 100vh;
}

#info {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #666;
  font-size: 12px;
  z-index: 100;
}

/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
.bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
}
a {
  text-decoration: none;
}