/* Fonts */
@font-face {
  font-family: Sharp Sans;
  src: url("./fonts/Sharp Sans Medium.otf");
}
@font-face {
  font-family: Wriggle;
  src: url("./fonts/Wriggle-Regular.otf");
}
@font-face {
  font-family: CourierNew;
  src: url("./fonts/Courier New.ttf");
}
@font-face {
  font-family: IBM Plex Mono;
  src: url("./fonts/IBMPlexMono-Regular.ttf");
}
/* No Select */
.noselect,
img,
* {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome, Edge, Opera and Firefox */
}

input,
textarea,
button,
select,
a,
svg,
div {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*::-moz-selection {
  background-color: #f3f3f3;
  color: #f3f3f3;
  text-shadow: none;
}

*::selection {
  background-color: #f3f3f3;
  color: #f3f3f3;
  text-shadow: none;
}

/* Loading Page */
.loadingPage {
  position: fixed;
  top: 0;
  background-color: #bC4DfB;
  width: 100vw;
  height: 100vh;
  z-index: 9999999999;
  pointer-events: none;
  opacity: 0;
}

/* Defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: transparent;
  font-size: 10px;
  width: 100%;
  overflow-x: hidden;
  /* cursor: none; */
}

/* width */
::-webkit-scrollbar {
  width: 0px;
}

body {
  background-color: transparent;
  box-sizing: border-box;
  z-index: 100;
  font-size: 10px;
  width: 100vw;
  overflow-x: hidden;
  font-family: DMSans;
  display: flex;
  justify-content: center;
  align-items: center;
}

.webgl {
  position: absolute;
  outline: none;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  top: 0;
  /* z-index: 100000000; */
}

.heroCircuit {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.heroCircuitTrigger {
  position: absolute;
  height: 20vh;
  aspect-ratio: 1;
  border: 1px dashed white;
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
}

.consoleSection {
  position: fixed;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  padding: 0rem;
  perspective: 1000px;
  pointer-events: none;
}

.consoleSectionCoverLine {
  z-index: 10;
  margin-right: 10rem;
  font-size: 2rem;
  font-family: IBM Plex Mono;
  color: #ffffff;
  opacity: 0;
}

.consoleSectionWindow {
  opacity: 0;
  margin-right: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.consoleSectionText {
  position: relative;
  width: 100%;
  transform-origin: left center;
}

.consoleSectionTextBoxOverflow {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  height: 50%;
  padding-inline: 1rem;
  pointer-events: none;
}

.consoleSectionTextBox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  font-size: 1.4rem;
  color: #ffffff;
  font-family: IBM Plex Mono;
  gap: 1.2rem;
  height: 100%;
  font-weight: 400;
}

.consoleSectionTextCGroup {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.consoleClickAudio {
  display: none;
  pointer-events: none;
}/*# sourceMappingURL=index.css.map */