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

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  overscroll-behavior: none;
  width: 100vw;
  height: 100vh;
  user-select: none;
  background-color: #000000;
  transform: scale(1);
}
body.active {
  animation: zoomEarth 1.8s ease-in-out .3s;
}

@keyframes zoomEarth {
  0% {
    transform: scale(1);
    filter: blur(0);
    opacity: 1;
  }
  50% {
    filter: blur(0);
    opacity: 1;
  }
  90% {
    filter: blur(30px);
    opacity: 1;
  }
  100% {
    transform: scale(6);
    filter: blur(30px);
    opacity: 0;
  }
}
#maingl {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#entlogo {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  mix-blend-mode: overlay;
  display: grid;
  place-items: center;
}
#entlogo img {
  width: 60%;
  height: auto;
  vertical-align: center;
}

#enterarea {
  display: block;
  position: absolute;
  width: 17%;
  height: 12%;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: rgba(0, 0, 0, 0);
  transition: all .6s ease;
  transform: scale(0.01);
}
#enterarea.scaleup {
  transform: scale(1);
}

h1 {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 9010;
}
h1 a {
  display: inline-block;
}

#global_navi {
  position: absolute;
  z-index: 9000;
  bottom: 20%;
  width: 100%;
  height: auto;
}
#global_navi ul {
  position: relative;
  width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 520px) {
  #global_navi ul {
    width: 90%;
  }
}
#global_navi ul li {
  position: relative;
}
#global_navi ul li a {
  color: #fff;
  font-size: 1.6rem;
  padding: 10px 20px 8px;
  display: inline-block;
  text-align: center;
}
#global_navi ul li a:hover {
  transition: all .6s ease;
  background: rgba(65, 110, 185, 0.75);
  color: #00A7FF;
}

/*# sourceMappingURL=gatestyle3.css.map */
