body,
html {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  overflow: hidden;
  background: black;
  color: white;
  font: 100% "Uniqlo-Font";
  -moz-osx-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: "Uniqlo-Font";
  src: url("UniqloPro-Bold.woff2") format("woff2"), url("UniqloPro-Bold.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

h1,
h2,
h3,
h4,
p {
  font: "Uniqlo-Font";
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1.heatText,
h1 span.heatText,
h2.heatText,
h2 span.heatText,
h3.heatText,
h3 span.heatText,
h4.heatText,
h4 span.heatText,
p.heatText,
p span.heatText {
  background: linear-gradient(-45deg, #fe007a, #ff9800, #fe007a, #ff9800);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  -webkit-animation: bgcolor 6s ease infinite;
          animation: bgcolor 6s ease infinite;
}

h1 span.purpText,
h2 span.purpText,
h3 span.purpText,
h4 span.purpText,
p span.purpText {
  color: #fe007a;
}

h1 span.yelText,
h2 span.yelText,
h3 span.yelText,
h4 span.yelText,
p span.yelText {
  color: #fcd200;
}

h1 span.orgText,
h2 span.orgText,
h3 span.orgText,
h4 span.orgText,
p span.orgText {
  color: #eb6512;
}

h1 span.redText,
h2 span.redText,
h3 span.redText,
h4 span.redText,
p span.redText {
  color: #e62321;
}

p {
  letter-spacing: 2px;
}

@-webkit-keyframes bgcolor {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bgcolor {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

a,
a:link,
a:visited {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
}

a:hover,
a:link:hover,
a:visited:hover {
  text-decoration: none;
  color: white;
}

button {
  padding: 11px 45px 8px 45px;
  margin: 10px 0;
  border-radius: 10px;
  letter-spacing: 3px;
  outline: none;
  border: none;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
  color: white;
  background: black;
  text-transform: uppercase;
  font-size: 20px;
  z-index: 5;
}

button:hover {
  background: linear-gradient(-45deg, #fe007a, #ff9800, #fe007a, #ff9800);
  background-size: 200% 200%;
  -webkit-animation: bgcolor 5s ease infinite;
          animation: bgcolor 5s ease infinite;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (max-width: 800px) {
  body,
  html {
    height: 100%;
  }
}

.animate__delay-1 {
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important;
}

.animate__delay-2 {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
}

::-webkit-scrollbar {
  width: 1em;
  background-color: black !important;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: #1a1a1a;
  outline: 1px solid 1a1a1a;
}

header {
  margin: 30px 0 0 0;
  text-align: center;
  color: white;
  position: relative;
  z-index: 20;
}

header h1 {
  font-size: 3em;
  line-height: 1em;
}

.logos {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 100;
  margin: 40px 20px;
}

.logos img {
  width: 60px;
  margin: 0 5px;
}

canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

@media (max-width: 768px) {
  header {
    margin: 20px 0 0 0;
  }
  header h1 {
    font-size: 2.5em;
  }
}

#clock {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
}

#clockdiv {
  color: #fff;
  display: inline-block;
  font-weight: 100;
  text-align: center;
  font-size: 30px;
  margin-top: 10px;
}

#clockdiv > div {
  display: inline-block;
  padding: 0 7.5px;
}

#clockdiv div > span {
  padding: 10px 12.5px 0 12.5px;
  border-radius: 5px;
  background: #1a1a1a90;
  display: inline-block;
  font-size: 1.8em;
}

.smalltext {
  padding-top: 10px;
  font-size: 16px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  #clock {
    position: absolute;
    bottom: 50px;
  }
  #clockdiv div > span {
    padding: 10px 10px 0 10px;
    font-size: 1.25em;
  }
}

#location {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 40px 20px;
  z-index: 100;
}

#loading {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

nav {
  position: relative;
  z-index: 5;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

nav a {
  opacity: 0.6;
  font-size: 18px;
  letter-spacing: 1px;
}

nav a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  nav a {
    opacity: 0.8;
    font-size: 16px;
  }
}

#links {
  position: absolute;
  bottom: 40px;
  left: 20px;
  display: block;
  width: 200px;
  z-index: 102;
}

#links a {
  opacity: 0.75;
  font-size: 18px;
  letter-spacing: 1px;
  display: block;
}

#links a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  #links {
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: #1a1a1a90;
    padding: 10px 0;
  }
  #links a {
    font-size: 16px;
    margin: 0 10px;
    letter-spacing: 1px;
    display: inline-block;
  }
}

#container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-touch-action: none;
      touch-action: none;
  z-index: 0;
}

#info {
  overflow-y: scroll !important;
}

#info .panel img.shirt {
  height: 350px;
}

#info .panel img.token {
  width: 150px;
  margin: 13px 20px;
}

.modal-pos {
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 100px 0 0 0;
  background: #1a1a1a75;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  overflow-y: scroll !important;
  overflow-x: hidden;
}

.modal-pos .box {
  position: relative;
  padding: 50px;
}

#close {
  position: absolute;
  z-index: 400;
  top: 0;
  right: 0;
}

#close a {
  position: fixed;
  top: 30px;
  right: 30px;
  font-size: 2em;
  opacity: 0.75;
  cursor: pointer;
  z-index: 900;
}

#close a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  #close {
    position: absolute;
    z-index: 999;
    top: 30px;
    left: 0;
    width: 100%;
    right: none;
    text-align: center;
  }
  #close a {
    position: relative;
    font-size: 1.5em;
    opacity: 0.75;
    cursor: pointer;
  }
  #close a:hover {
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */