/* body {
    margin: 0;
    background-color: black;
} */

.dl_root {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: black;
    height: 100vh;
    width: 100vw;
    transform: translate3d(-50%, -50%, 0);
}

.dot {
    width: 12px;
    height: 12px;
    background: #ff0e07cc;
    border-radius: 100%;
    margin: 0 3px;
    display: inline-block;
    animation: slide 1s infinite;
}

.dot:nth-child(1) {
    animation-delay: 0.1s;
    background: #ff0e07cc;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
    background: #ff0e07cc;
}

.dot:nth-child(3) {
    animation-delay: 0.3s;
    background: #ff0e07cc;
}

.dot:nth-child(4) {
    animation-delay: 0.4s;
    background: #ff0e07cc;
}

.dot:nth-child(5) {
    animation-delay: 0.5s;
    background: #ff0e07cc;
}

@-moz-keyframes slide {
    0% {
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes slide {
    0% {
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

@-o-keyframes slide {
    0% {
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slide {
    0% {
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}