body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    text-align: center;
}

#pleasewait {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 800;
    background-color: #deeff5;
}

#pleasewait table {
    width: 100%;
    height: 80%;
}

#pleasewait table td {
    font-family: Arial;
    font-size: 20px;
}

#pleasewait img {
    width: 70%;
}

#pleasewaitcontainer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
}

#buttonenter {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    z-index: 801;
    display: none;
}

#buttonenter div {
    border-radius: 5px;
    padding: 15px 25px;
    font-size: 22px;
    text-decoration: none;
    margin: 20px;
    color: #fff;
    position: relative;
    display: inline-block;
    font-family: Arial;
    text-shadow: 0 0 1px #000000, 0 0 5px #000000;
    transform: translate(0px, 5px);
    -webkit-transform: translate(0px, 5px);
    background-color: #55acee;
    box-shadow: 0px 5px 0px 0px #3C93D5;
    cursor: pointer;
}

#content {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    text-align: center;
}

#container {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #303030;
    overflow: hidden;
}

#controls {
    position: absolute;
    left: 10px;
    top: 10px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    z-index: 700;
    font-family: Arial;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#controls > a {
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

#info {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    margin: 0 auto;
    display: none;
}

#infotext {
    margin: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    z-index: 701;
    font-family: Arial;
    font-size: 16px;
    color: white;
}

#about {
    position: absolute;
    right: 10px;
    top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    z-index: 702;
    font-family: Arial;
    font-size: 16px;
    line-height: 32px;
    color: white;
}

.lds-spinner {
    color: black;
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-spinner div {
    transform-origin: 32px 32px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 29px;
    width: 5px;
    height: 14px;
    border-radius: 20%;
    background: #000000;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}