#loader {
    width: 100%;
    height: 100%;
    background: darkgrey;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#loadingContainer {
    width: 30%;
    height: 1rem;
    background: white;
    border-radius: 1px;
    margin: 0.5rem;
    bottom: 0;
}
#bar {
    height: 100%;
    background: grey;
    border-radius: 1px;
}
#percent {
    color: white;
    background: none;
    margin-bottom: 2rem;
    font-size: 1rem;
}
#tip {
    color: yellow;
    background: grey;
    margin-bottom: 3rem;
}
#description {
    color: white;
    position: absolute;
    bottom: 0;
    margin-bottom: 2rem;
    font-size: x-small;
}