.viewstack {
  padding: 6.66vw;
  height: 100vh;
  padding-bottom: 18.6vw;
  position: absolute;
  overflow: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  left: 0px;
  right: 0px;
  top: 0px;
  background: #eefff5;
}

.viewstack::-webkit-scrollbar {
  display: none;
}

body {
  background: #eefff5;
  -webkit-touch-callout: none !important;
}

main {
  opacity: 0;
}

main.loaded {
  -webkit-touch-callout: none !important;
  animation: fadeIn .30s ease-in both;
}

main.unloaded {
  animation: fadeOut .25s ease-out both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

a {
  text-decoration: none;
  color: #eefff5;
  -webkit-user-select: none !important;
}

a.live {
  cursor: pointer;
}

