/* Fontes do jogo */
@font-face {
  font-family: "Albertus";
  src: url("../fonts/albertus-nova-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Jakarta";
  src: url("../fonts/PlusJakartaSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

html, body {
  margin: 0;
  height: 100%;
  font-family: system-ui, sans-serif;
}

/* Dica mostrada fora do VR (no browser de desktop). Esconde-se ao entrar em VR. */
#hint {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  pointer-events: none;
}
