body {
    background: #006DAE;
    animation: bgg 16087ms ease-in alternate infinite;
    color: #fff;
    font-family:Segoe UI Light, Segoe UI, Arial;
    font-weight:normal;
    font-size: 11px;
}

.progress {
    text-align: center;
    width: 40%;
    margin: 0 auto;
    margin-top: 23%;
    top: 50%;
    text-decoration: none;
}

.restart {
    text-align: center;
    width: 40%;
    margin: 0 auto;
    margin-top: 23%;
    top: 5%;
    text-decoration: none;
    border: red;
    background-color: red;
}

.crash {
    width: 40%;
    margin: 0 auto;
    text-decoration: none;
    margin-left: 10%;
}


@keyframes bgg {
    0% {
        background: #006DAE;
    }

    50% {
        background: #006DAE;
    }

    100% {
        background: #006DAE;
    }
}

.loader {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 50px;
    height: 50px;
    margin: auto;
}

.loader .circle {
    position: absolute;
    width: 38px;
    height: 38px;
    opacity: 0;
    transform: rotate(225deg);
    animation-iteration-count: infinite;
    animation-name: orbit;
    animation-duration: 5.5s;
}

.loader .circle:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 5px;
    background: #fff;
}

.loader .circle:nth-child(2) {
    animation-delay: 240ms;
}

.loader .circle:nth-child(3) {
    animation-delay: 480ms;
}

.loader .circle:nth-child(4) {
    animation-delay: 720ms;
}

.loader .circle:nth-child(5) {
    animation-delay: 960ms;
}

.loader .bg {
    position: absolute;
    width: 70px;
    height: 70px;
    margin-left: -16px;
    margin-top: -16px;
    border-radius: 13px;
    background-color: #006DAE;
    animation: bgg 16087ms ease-in alternate infinite;
}

@keyframes orbit {
    0% {
        transform: rotate(225deg);
        opacity: 1;
        animation-timing-function: ease-out;
    }

    7% {
        transform: rotate(345deg);
        animation-timing-function: linear;
    }

    30% {
        transform: rotate(455deg);
        animation-timing-function: ease-in-out;
    }

    39% {
        transform: rotate(690deg);
        animation-timing-function: linear;
    }

    70% {
        transform: rotate(815deg);
        opacity: 1;
        animation-timing-function: ease-out;
    }

    75% {
        transform: rotate(945deg);
        animation-timing-function: ease-out;
    }

    76% {
        transform: rotate(945deg);
        opacity: 0;
    }

    100% {
        transform: rotate(945deg);
        opacity: 0;
    }
}

.errorcode {
    padding-left: 100px;
    position: relative;
}

a {
    text-decoration: none;
    color: #fff;
}