#loader {

    position: fixed;

    width: 100%;

    height: 100%;

    background: white;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 99999;

}

.loader-content h1 {

    font-size: 60px;

    font-weight: bold;

    color: #0d6efd;

    animation: pulse 1.5s infinite;

}

@keyframes pulse {

    50% {

        transform: scale(1.2);

    }

}

#progressBar {

    position: fixed;

    top: 0;

    left: 0;

    height: 4px;

    width: 0;

    background: #ffc107;

    z-index: 999999;

}