@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;400;800&display=swap");
div.helptext {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 64px max(50vw - 250px, 32px);
  box-sizing: border-box;
  font-size: 18px;
  text-align: center;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
div.helptext div.logo {
  display: flex;
  flex-direction: row;
  place-content: center;
  gap: 32px;
  margin-bottom: 24px;
}
div.helptext div.logo img {
  width: 128px;
}
div.helptext div.logo span {
  display: flex;
  place-items: center;
  font-size: 32px;
  font-weight: 800;
}
div.helptext a {
  color: white;
}
div.helptext div.hr {
  width: 64px;
  height: 2px;
  margin: 1em auto;
  background-color: white;
}
div.helptext div.footer {
  opacity: 0.5;
  font-size: 14px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1px;
}

div.loading {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div.loading span:first-child {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background-color: #ff2d2d;
  animation: bubble 1s infinite ease-in-out, color-cycle 5s infinite linear;
}
div.loading span:last-child {
  display: flex;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 24px;
  margin-left: 24px;
}

@keyframes bubble {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0.9);
  }
}
@keyframes color-cycle {
  0% {
    background-color: #ff2d2d;
  }
  33% {
    background-color: #4040ff;
  }
  66% {
    background-color: #5aff5a;
  }
  100% {
    background-color: #ff2d2d;
  }
}
div.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 108px;
  box-sizing: border-box;
  font-size: 32px;
  color: white;
  background: linear-gradient(to bottom, hsla(0deg, 0%, 0%, 0.5) 0%, hsla(0deg, 0%, 0%, 0.494) 8.1%, hsla(0deg, 0%, 0%, 0.476) 15.5%, hsla(0deg, 0%, 0%, 0.448) 22.5%, hsla(0deg, 0%, 0%, 0.412) 29%, hsla(0deg, 0%, 0%, 0.37) 35.3%, hsla(0deg, 0%, 0%, 0.324) 41.2%, hsla(0deg, 0%, 0%, 0.275) 47.1%, hsla(0deg, 0%, 0%, 0.225) 52.9%, hsla(0deg, 0%, 0%, 0.176) 58.8%, hsla(0deg, 0%, 0%, 0.13) 64.7%, hsla(0deg, 0%, 0%, 0.088) 71%, hsla(0deg, 0%, 0%, 0.052) 77.5%, hsla(0deg, 0%, 0%, 0.024) 84.5%, hsla(0deg, 0%, 0%, 0.006) 91.9%, hsla(0deg, 0%, 0%, 0) 100%);
  display: flex;
  flex-direction: row;
  padding: 32px;
}
div.overlay div.logo {
  display: flex;
  flex-direction: row;
  place-content: start;
  flex: 1;
  gap: 16px;
}
div.overlay div.logo span {
  display: flex;
  place-items: center;
  font-size: 32px;
  font-weight: 800;
}
div.overlay div.score {
  text-align: right;
  font-weight: 800;
  display: flex;
  place-items: center;
}

@media only screen and (max-width: 500px) {
  div.overlay div.logo img {
    display: none;
  }
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  font-family: Inter;
}

canvas {
  width: 100%;
  height: 100%;
}

.hidden {
  display: none !important;
}

/*# sourceMappingURL=index.css.map */
