html, body{
    background: #0D0D0D;
    color: #F2F2F2;
    margin:0;
    padding: 0;
}
.splash-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 100%;
    width: 100%;
    margin: -10px;
    background: #0D0D0D;
    color: #F2F2F2;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1);
}

.splash-screen > div {
    width: 64px;
    height: 64px;
    position: relative;
    animation: sk-chase 3s infinite linear both;
}

.splash-screen > div div {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.splash-screen > div div:before {
        content: '';
        display: block;
        width: 25%;
        height: 25%;
        background: #429b06;
        border-radius: 100%;
        animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.splash-screen > div div:nth-child(1) {
    animation-delay: -1.0s;
}

.splash-screen > div div:nth-child(2) {
    animation-delay: -0.9s;
}

.splash-screen > div div:nth-child(3) {
    animation-delay: -0.8s;
}

.splash-screen > div div:nth-child(4) {
    animation-delay: -0.7s;
}

.splash-screen > div div:nth-child(5) {
    animation-delay: -0.6s;
}

.splash-screen > div div:nth-child(6) {
    animation-delay: -0.5s;
}

.splash-screen > div div:nth-child(7) {
    animation-delay: -0.4s;
}

@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot {
    80%, 100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }

    100%, 0% {
        transform: scale(1.0);
    }
}