
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  overflow: hidden;
}
#viz-loader-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  z-index: 100;
}
#viz-loader {
  display: inline-block;
  width: 8rem;
  height: 8rem;
  position: relative;
}
a {
  color: #a5a5a5;
  font-family: "lores-12", sans-serif;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.25rem;
  transition: text-shadow .5s;
}
a:hover {
  color: #ffffff;
  text-shadow: 0 0 0.75vw #ffffff, 0 0 0.75vw #ffffff, 0vw 0vw 1vw #ffffff;
  text-decoration: none;
  font-weight: 400;
}
a,
button {
  pointer-events: auto;
  color: #a5a5a5;
  text-decoration: none;
  cursor: pointer;
}
#viz-nav {
  position: absolute;
  font-size: 1rem;
  z-index: 2;
  width: 100%;
  height: 200px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0);
}
#viz-nav button {
  background: transparent;
  color: #ffffff;
  padding: 1rem 2rem;
  margin: 2rem;
  border: none;
}

ul {
  list-style-type: none;
  margin: auto;
  padding: 0;
}

#viz-lab-button {
  position: absolute;
  text-align: center;
  width: 20rem !important;
  padding: 0 2rem;
  top: 0;
  left: 0;
}

#viz-wiki-button {
  position: absolute;
  text-align: center;
  width: 20rem !important;
  padding: 0 2rem;
  bottom: 0;
  left: 0;
}

#vif-button {
  position: absolute;
  text-align: center;
  width: 20rem !important;
  padding: 0 2rem;
  bottom: 0;
  right: 0;
}

#vzgg-button {
  position: absolute;
  text-align: center;
  width: 20rem !important;
  padding: 0 2rem;
  top: 0;
  right: 0;

}

@keyframes viz-x-anim {
  0% {
    transform: rotate(-360deg);
    transform-origin: 50% 50%;
  }
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
}

.viz-x {
  animation: viz-x-anim 3s 1.5s ease-in-out alternate infinite;
  transform-origin: 50% 50%;
}

@keyframes viz-b-anim {
  0% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    transform: scale(0);
  }
  100% {
    transform: rotate(360deg);
    transform-origin: 50% 50%;
    transform: scale(1);
  }
}

.viz-b {
  animation: viz-b-anim 1.5s ease-in-out alternate infinite;
  transform-origin: 50% 50%;
}

@keyframes viz-r-anim {
  0% {
    transform: scale(0);
    transform-origin: 50% 50%;
  }
  50% {
    transform: scale(1);
    transform-origin: 50% 50%;
  }
  100% {
    transform: scale(1);
    transform-origin: 50% 50%;
  }
}

#viz-out {
    transform-origin: 50% 50%;
}
#viz-mid-out {
    animation: viz-r-anim 1.5s 0.2s ease-in-out alternate infinite;
}
#viz-mid-in {
    animation: viz-r-anim 1.5s 0.1s ease-in-out alternate infinite;
}
#viz-in {
    animation: viz-r-anim 1.5s ease-in-out alternate infinite;
}

#js-foot{
  font-family: "lores-12", sans-serif;
  font-size: 0.8rem;
  color: #555555;
  position: fixed;
  bottom: 0;
  right:  0;
  padding: 0 0.5rem 0 0;
}
