* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body,main{
    width: 100%;
    height: 100%;
}
.loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading_circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background:
        radial-gradient(closest-side, #000 95%, transparent 95% 100%),
        conic-gradient(rgb(16, 0, 156) 10%, #000 20%);
}

.loading_progress {
    visibility: hidden;
    height: 0;
    width: 0;
    color: #fff;
}

.loading_text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;

}

