a {
  text-decoration: none;
}

.textAnimationClass {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.textAnimationClassNav {
  position: relative;
  display: flex;
  justify-content: center;
}

.textAnimationClassContainer {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hidden {
  opacity: 0;
}

.absolute {
  position: absolute;
}

/* Fonts */
@font-face {
  font-family: NeueHaasNormal;
  src: url("./fonts/NeueHaasDisplayMedium.ttf");
}
@font-face {
  font-family: OpenSauceOneLight;
  src: url("./fonts/OpenSauceOne-Light.ttf");
}
@font-face {
  font-family: OpenSauceOneMedium;
  src: url("./fonts/OpenSauceOne-Medium.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 */
}

.invisible {
  opacity: 0 !important;
  pointer-events: none !important;
}

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

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

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

/* width */
::-webkit-scrollbar {
  width: 0;
  -webkit-user-select: auto;
          user-select: auto;
}

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

html {
  font-size: 10px;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  /* cursor: none; */
  font-family: OpenSauceOneLight;
}

body {
  z-index: 100;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  font-size: 10px;
  -webkit-overflow-scrolling: touch;
}

.webgl {
  position: fixed;
  top: 0;
  outline: none;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

.mobileTexture {
  opacity: 0;
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
}

.loadingSection {
  width: 100vw;
  height: 100vh;
  position: fixed;
  pointer-events: none;
  background-color: #fcfcfc;
  z-index: 100;
}

.testSection {
  position: relative;
  width: 100vw;
  height: 100vh;
  border: 1px solid red;
  padding-block: 4rem;
  padding-inline: 10rem;
  z-index: 2;
}

.conceptContainer {
  position: absolute;
  z-index: 2;
  font-size: 1.6rem;
  font-weight: bold;
}

.heroSectionBody {
  width: 50rem;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 10rem;
  font-weight: 900;
}

.bookSection {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid red;
  z-index: 1000;
  perspective: 2500px;
  background-color: #ffffff;
}

.bookGroup {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2500px;
  transform-style: preserve-3d;
}

.bookPage {
  position: absolute;
  width: 50rem;
  height: 80rem;
  background-color: #f0f0f0;
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.1882352941), inset 1rem 0 10rem 0 rgba(0, 0, 0, 0.1254901961);
  transform: rotateY(10deg);
  transform-origin: left center;
  padding: 5rem;
  font-size: 1.6rem;
}

.bookPageContent {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.bookPageNumber {
  position: relative;
  width: 100%;
}

.bookPageHeader {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
}

.bookPageBody {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 1.6rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.bookPageImageTape {
  position: absolute;
  filter: brightness(0.3);
  transform: translateY(-10rem) rotateZ(-90deg);
  width: 10rem;
  z-index: 10;
}

.bookPageImageFrame {
  position: relative;
  height: 42rem;
  width: 35rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  background-color: #ffffff;
  box-shadow: 2px 4px 1px 0 rgba(0, 0, 0, 0.1882352941);
  margin-top: 5rem;
  gap: 2rem;
}

.bookPageImageBorder {
  position: relative;
  width: 31rem;
  height: 31rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bookPageImage {
  width: 105%;
}

.bookPageFront {
  position: relative;
  width: 100%;
  height: 100%;
}

.bookPageFrontNumber {
  text-align: right;
}

.bookPageBack {
  transform: scaleX(-1);
  position: absolute;
  top: 5rem;
  width: calc(100% - 10rem);
  height: calc(100% - 10rem);
  opacity: 0;
}

.bookPageBackNumber {
  text-align: left;
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 550px) {
  html {
    font-size: 5px;
  }
}/*# sourceMappingURL=index.css.map */