#loaning-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-in-out;
    flex-direction: column;
}

#loaning-screen img {
    width: 30%;
    max-width: 200px;
    animation: pulse 1.5s infinite ease-in-out;
    margin-bottom: 20px;
}

#loading-progress {
    width: 80%;
    max-width: 400px;
    height: 5px;
    appearance: none;
    background-color: #444;
    border-radius: 10px;
}

#loading-progress::-webkit-progress-bar {
    background-color: #444;
    border-radius: 10px;
}

#loading-progress::-webkit-progress-value {
    background-color: #ffa726;
    border-radius: 10px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
