app-root {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    flex-direction: column;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

body {
    background: white;
    margin: 0;
    padding: 0;
}

.spinner {
    margin: 100px auto 0;
    width: 300px;
    text-align: center;
}

.spinner > div {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    display: inline-block;
    animation: sk-bouncedelay 2s infinite ease-in-out both;
    margin-right: 5px;
}

.spinner--gray > div {
    background: lightgray;
}

.spinner--green > div {
    background: #006A4D;
}

.spinner .spinner__item1 {
    animation-delay: -0.60s;
}

.spinner .spinner__item2 {
    animation-delay: -0.40s;
}

.spinner .spinner__item3 {
    animation-delay: -0.20s;
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0;
    }
    40% {
        transform: scale(1.0);
        opacity: 1;
    }
}

