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

/* 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 */
}

html {
  font-size: 10px;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
}

body {
  z-index: 100;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  font-size: 10px;
  background-color: #ffffff;
}

main {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  pointer-events: auto;
}

.backSection {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  font-size: 5vw;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 5vw;
  color: #000000;
}

.topSection {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 20;
  font-size: 5vw;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 5vw;
  color: #000000;
}

.webgl {
  position: fixed;
  outline: none;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  pointer-events: none;
}/*# sourceMappingURL=index.css.map */