.loading-frame{
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0A0A0A;
    display: flex;
    align-items: center;
    pointer-events: all;
    z-index: 999999;
}
.progress-frame{
    position: relative;
    margin: auto;
    width: 80%;
    max-width: 600px;
    height: 4px;
    border-radius: 5px;
    background-color: rgba(128, 128, 128, 0.328);
}
#progress-bar{
    height: 100%;
    width: 0.01%;
    background-color: greenyellow;
    border-radius: inherit;
}
.fade-out{
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}