*
{
    margin: 0;
    padding: 0;
}

html,
body
{
    overflow: hidden;
}

.webgl
{
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}

.spaceman
{
    position: absolute;
    display: flex;
    justify-content: center;
    top: 20%;
    width: 100%;
    animation: rotation 8s infinite linear;
}

@keyframes rotation 
{
    from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(359deg);
      }
    }

.loading-bar 
{
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.5s;
    will-change: transform;
}

.loading-text
{
    position: absolute;
    width: 100%;
    top: 70%;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    text-align: center;
}
.controls
{
    position: absolute;
    bottom: 10%;
    padding-left: 2%;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
}

.controls.ended
{
    color: black;
}

.loading-bar.ended
{
    transform-origin: top right;
    transition: transform 1.5s ease-in-out;
}

.spaceman.ended{
    display: none;
}

.loading-text.ended{
    display: none;
}


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