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;
}

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

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

.logos {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 40px 20px;
}

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

canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#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) {
  #clockdiv div > span {
    font-size: 1.4em;
  }
}

#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;
}
/*# sourceMappingURL=style.css.map */