
*{
    margin: 0;
}
.loader-container{
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    display: flex;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
}
.circle{
    scale: .3;
    position: relative;
    border: 34px solid #ffffff;
    width: 240px;
    height: 240px;
    border-radius: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: loadder-rotate 1.5s linear 0s infinite;
}
.dot{
    position: relative;
    border-radius: 100%;
    width: 100px;
    height: 100px;
    background: linear-gradient(to bottom, #9A5BCE 0%, #643D85 100%);
    animation: loadder-load 1.5s ease-out 0s infinite;
    border: 16px solid #000000;
}

@keyframes loadder-load {
    from{
        top: 0;
        left: 0;
        scale: 1.7;
    }
    25%{
        top: 80px;
        left: 80px;
        scale: 1;
    }
    60%{
        top: 80px;
        left: 80px;
        scale: 1;
    }
    75%{
        top: 0;
        left: 0;
        scale: 1.7;
    }
    to{
        top: 0;
        left: 0;
        scale: 1.7;
    }
}
@keyframes loadder-rotate {
    from{
        transform: rotateZ(0);
    }
    25%{
        transform: rotateZ(0);
    }
    60%{
        transform: rotateZ(360deg);
    }
    75%{
        transform: rotateZ(360deg);
    }
    to{
        transform: rotateZ(360deg);
    }
}