*
{
    margin: 0;
    padding: 0;
}

html,
body
{
    overflow: hidden;
}

.webgl
{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    outline: none;
}

canvas{
    background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
}

.menu
{
    position: absolute;
    line-height: 50px;
    width: 100vw;
    font-size: small;
    color: #878a88;
    background-color: white;
}
.menu h2
{
  width: 100vw;
  margin: auto;
  text-align: center;
}

.fotter
{
    position: absolute;
    line-height: 50px;
    width: 100vw;
    bottom: 0px;
    color: gray;
    background-color: white;
    text-align: center;
}

.fotter a
{
  width: 100vw;
  margin: auto;
  color: inherit;
  text-decoration: none;
}

#loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.spinner {
  width: 100px;
  height: 100px;
  margin: 400px auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}
/* Loading Animation */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  } 100% {
    transform: scale(2.0);
    opacity: 0;
  }
}

.loaded {
    opacity: 0;
    visibility: hidden;
}

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