html,
body {
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1vw;
  font-weight: bold;
}

#renderCanvas {
  width: 99.9%;
  height: 100%;
  touch-action: none;
  background-color: #e0e0e0;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}

#UI {
  width: 0.1%;
  height: 100%;
  background-color: rgb(38, 38, 56);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#textBlock {
  position: absolute;
  top: 30vh;
  right: 1vw;
  height: 20vh;
  width: 20vw;
  background-color: rgba(96, 118, 204, 0);
  font-family: "Barlow Condensed", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  display: none;
  padding: 0.5%;
  padding-left: 1%;
  padding-right: 1%;
}

#textBlockTitle {
  font-weight: 900;
  font-size: 2em;
  align-self: flex-end;
  margin-right: 5%;
}

#textBlockText {
  height: 70%;
  color: #282828;
  font-family: "Anonymous Pro", monospace;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  align-self: flex-end;
  text-align-last: right;
}

#buttonBox {
  position: absolute;
  top: 55vh;
  right: 1vw;
  height: 10vh;
  width: 10vw;
  background-color: rgba(38, 38, 56, 0);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: aliceblue;
  flex-direction: column;
}

#logoText {
  position: absolute;
  top: 15vh;
  left: 3vw;
  width: 20vw;
  height: 40vh;
  font-weight: bold;
  font-size: larger;
  padding: 1vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background-color: #31313135;
  border-radius: 2em;
  z-index: 0;
  padding-bottom: 5vh;
  padding-top: -5vh;
}

#lines {
  width: 9%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}

#lines:hover .line {
  background-color: #e0e0e0;
}

#lines:hover {
  background-color: #282828;
  border-radius: 1em;
}

.line {
  width: 2vw;
  background-color: #313131;
  height: 0.2vh;
}

#logo {
  position: absolute;
  top: 1vh;
  left: 3vw;
  width: 10vw;
  height: 10vh;
  font-weight: bold;
  font-size: larger;
  padding: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: brightness(0);
}

#pointerText {
  position: absolute;
  top: 75vh;
  left: 45vw;
  width: 10vw;
  height: 10vh;
  font-weight: bold;
  font-size: 1.3vw;
  font-family: "Barlow Condensed", sans-serif;
  padding: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

#copyright {
  position: absolute;
  top: 95vh;
  left: 3vw;
  width: 20vw;
  height: 5vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #282828;
  font-family: "Anonymous Pro", monospace;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

#rightText {
  position: absolute;
  top: 95vh;
  right: 3vw;
  width: 30vw;
  height: 5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  color: #313131;
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  line-height: 82.8%;
  text-transform: uppercase;
}

#navigation {
  position: absolute;
  top: 1vh;
  right: 3vw;
  width: 30vw;
  height: 5vh;
  padding: 1vw;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-family: "Anonymous Pro", monospace;
  font-weight: 700;
}

.navC:hover {
  border-bottom: #282828 solid 3px;
}

#logoText h1 {
  /* align-self: flex-start; */
  height: 30%;
  font-family: "Barlow Condensed", sans-serif;
  color: #313131;
  font-size: 4em;
  font-style: normal;
  font-weight: 900;
  line-height: 93.3%;
  text-transform: uppercase;
}

#textLogoText {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vh;
  font-family: "Anonymous Pro", monospace;
  color: #282828;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

#socials {
  height: 20%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.socialsLogo {
  width: 10%;
  height: 70%;
  border-radius: 2em;
  background-color: #282828;
  margin: 1%;
}

#inOut {
  background-color: rgba(96, 118, 204, 0);
  width: 50%;
  height: 40%;
  border: none;
  color: #e0e0e0;
  display: none;
  font-family: "Barlow Condensed", sans-serif;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1em;
  background-color: #282828;
  border-radius: 2em;
}

#inOut:hover {
  width: 52%;
  height: 42%;
  background-color: #313131;
}

#buy {
  background-color: rgba(96, 118, 204, 0);
  width: 50%;
  height: 40%;
  border: none;
  color: #e0e0e0;
  display: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 1em;
  align-items: center;
  justify-content: center;
  background-color: #282828;
  border-radius: 2em;
}

#buy:hover {
  width: 52%;
  height: 42%;
  background-color: #313131;
}

#customLoadingScreenDiv {
  background: #e0e0e0;
  color: #282828;
  font-size: 2vw;
  height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

#loadingPercentages {
  font-size: 1vw;
  text-align: center;
  /* margin-top: 2.5%; */
}

.loadingL {
  width: 20%;
  height: 20%;
}

@media only screen and (max-width: 758px) {
  main {
    background-color: #e0e0e0;
    height: 100vh;
  }
  #renderCanvas {
    height: 50%;
    width: 100%;
  }
  #logo {
    top: 0vh;
    height: 5vh;
    width: 20vw;
  }
  #logoText {
    width: 90%;
    height: 10%;
    top: 8vh;
  }
  #logoText h1 {
    height: 20%;
    font-size: 2.8em;
  }
  #textLogoText {
    font-size: 1.6em;
    padding: 0;
  }
  #navigation {
    width: 60vw;
  }
  .navC {
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
  }
  #lines {
    width: 10%;
  }
  .line {
    width: 4vw;
  }
  #socials {
    height: 30%;
  }
  #copyright {
    width: 40vw;
    font-size: 2em;
  }
  #rightText {
    width: 50vw;
    font-size: 3em;
  }
  #socials {
    align-self: flex-start;
    width: 60%;
  }
  .socialsLogo {
    background-color: #28282800;
    height: 100%;
  }
  .socialsLogo svg {
    width: 5vw;
  }
  #textBlock {
    top: 74vh;
    width: 90vw;
    height: 15vh;
  }
  #textBlockTitle {
    height: 20%;
    font-size: 2.8em;
  }
  #textBlockText {
    height: 60%;
    font-size: 2em;
  }
  #isAwailable {
    height: 20%;
    font-size: 2em;
  }
  #buttonBox {
    top: 87vh;
    width: 50vw;
    flex-direction: row;
  }
  #inOut {
    width: 40%;
    font-size: 2em;
  }
  #buy {
    width: 40%;
    font-size: 2em;
  }
  #customLoadingScreenDiv {
    font-size: 5vw;
  }
  #loadingPercentages {
    font-size: 3vw;
    /* margin-top: -2.5%; */
  }
  #pointerText {
    font-size: 3vw;
    width: 30vw;
    left: 35vw;
  }
}
