html,
body {
    margin: 0;
    padding: 0 !important;
    height: 100%
}

html {
    background-color: #000
}

body {
    overflow: hidden
}

#game-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

#loading-box {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999999;
    background-color: rgb(0, 0, 0)
}

#loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 80px;
    height: 40px;
    text-align: center
}

#loading span {
    display: inline-block;
    width: 8px;
    height: 100%;
    border-radius: 4px;
    background: #a190ee;
    -webkit-animation: load 1s ease infinite
}

@-webkit-keyframes load {
    0%,
    100% {
        height: 40px;
        background: #ac42e9
    }
    50% {
        height: 70px;
        margin: -15px 0;
        background: #b7ade6
    }
}

#loading span:nth-child(2) {
    -webkit-animation-delay: .2s
}

#loading span:nth-child(3) {
    -webkit-animation-delay: .4s
}

#loading span:nth-child(4) {
    -webkit-animation-delay: .6s
}

#loading span:nth-child(5) {
    -webkit-animation-delay: .8s
}