.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(24, 15, 2);
    z-index: 99999998;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
}
.loading-text mytext {
    color: rgb(240, 159, 38);
    display: inline-block;
    animation: jumploding 0.8s ease-in-out infinite;
    animation-delay: calc(0.1s * var(--delay));
}
@keyframes jumploding {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.loading-slow {
    top: 10px;
    position: inherit;
    font-size: 18px;
    color: #ff0000;
    z-index: 99999999;
}